aboutsummaryrefslogtreecommitdiffhomepage
path: root/libs/cloudscraper/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/cloudscraper/exceptions.py')
-rw-r--r--libs/cloudscraper/exceptions.py111
1 files changed, 0 insertions, 111 deletions
diff --git a/libs/cloudscraper/exceptions.py b/libs/cloudscraper/exceptions.py
deleted file mode 100644
index c9fb7ca05..000000000
--- a/libs/cloudscraper/exceptions.py
+++ /dev/null
@@ -1,111 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# ------------------------------------------------------------------------------- #
-
-"""
-cloudscraper.exceptions
-~~~~~~~~~~~~~~~~~~~
-This module contains the set of cloudscraper exceptions.
-"""
-
-# ------------------------------------------------------------------------------- #
-
-
-class CloudflareException(Exception):
- """
- Base exception class for cloudscraper for Cloudflare
- """
-
-
-class CloudflareLoopProtection(CloudflareException):
- """
- Raise an exception for recursive depth protection
- """
-
-
-class CloudflareCode1020(CloudflareException):
- """
- Raise an exception for Cloudflare code 1020 block
- """
-
-
-class CloudflareIUAMError(CloudflareException):
- """
- Raise an error for problem extracting IUAM paramters
- from Cloudflare payload
- """
-
-
-class CloudflareChallengeError(CloudflareException):
- """
- Raise an error when detected new Cloudflare challenge
- """
-
-
-class CloudflareSolveError(CloudflareException):
- """
- Raise an error when issue with solving Cloudflare challenge
- """
-
-
-class CloudflareReCaptchaError(CloudflareException):
- """
- Raise an error for problem extracting reCaptcha paramters
- from Cloudflare payload
- """
-
-
-class CloudflareReCaptchaProvider(CloudflareException):
- """
- Raise an exception for no reCaptcha provider loaded for Cloudflare.
- """
-
-# ------------------------------------------------------------------------------- #
-
-
-class reCaptchaException(Exception):
- """
- Base exception class for cloudscraper reCaptcha Providers
- """
-
-
-class reCaptchaServiceUnavailable(reCaptchaException):
- """
- Raise an exception for external services that cannot be reached
- """
-
-
-class reCaptchaAPIError(reCaptchaException):
- """
- Raise an error for error from API response.
- """
-
-
-class reCaptchaAccountError(reCaptchaException):
- """
- Raise an error for reCaptcha provider account problem.
- """
-
-
-class reCaptchaTimeout(reCaptchaException):
- """
- Raise an exception for reCaptcha provider taking too long.
- """
-
-
-class reCaptchaParameter(reCaptchaException):
- """
- Raise an exception for bad or missing Parameter.
- """
-
-
-class reCaptchaBadJobID(reCaptchaException):
- """
- Raise an exception for invalid job id.
- """
-
-
-class reCaptchaReportError(reCaptchaException):
- """
- Raise an error for reCaptcha provider unable to report bad solve.
- """