From f3843c0f673d0017629e8ed7aa68722912743872 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 14 Dec 2022 20:02:54 +0300 Subject: [PATCH] Delete errors.py --- src/python3_anticaptcha/core/errors.py | 37 -------------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/python3_anticaptcha/core/errors.py diff --git a/src/python3_anticaptcha/core/errors.py b/src/python3_anticaptcha/core/errors.py deleted file mode 100644 index 374a6bd..0000000 --- a/src/python3_anticaptcha/core/errors.py +++ /dev/null @@ -1,37 +0,0 @@ -class AntiCaptchaApiException(Exception): - pass - - -class DownloadError(AntiCaptchaApiException): - def __init__(self): - AntiCaptchaApiException.__init__(self, """\nОшибка при скачивании файла""") - - -class ReadError(AntiCaptchaApiException): - def __init__(self, error): - AntiCaptchaApiException.__init__( - self, - """\nПораждается, при проблеме во время чтения сохранённого файла. - \n\t{0}""".format( - error - ), - ) - - -class ParamError(AntiCaptchaApiException): - def __init__(self, additional_info=None): - AntiCaptchaApiException.__init__( - self, - """\nПораждается, при передаче неверного параметра.""" + additional_info if additional_info else "\n", - ) - - -class IdGetError(AntiCaptchaApiException): - def __init__(self, server_answer): - AntiCaptchaApiException.__init__( - self, - """\n Пораждается при ошибке получения ID капчи от сервиса. Ответ сервера:\n - {0}""".format( - server_answer - ), - )