- tanti miglioramenti sotto il cofano, supporto iniziale al futuro kodi 19 - Nuova modalità di visualizzazione per episodio successivo - fixato wstream tramite l'aggiunta della finestra per risolvere il reCaptcha - aggiunta sezione segnala un problema in Aiuto - altri fix e migliorie varie a canali e server
50 lines
992 B
Python
50 lines
992 B
Python
# ------------------------------------------------------------------------------- #
|
|
|
|
|
|
class reCaptcha_Service_Unavailable(Exception):
|
|
"""
|
|
Raise error for external services that cannot be reached
|
|
"""
|
|
|
|
|
|
class reCaptcha_Error_From_API(Exception):
|
|
"""
|
|
Raise error for error from API response.
|
|
"""
|
|
|
|
|
|
class reCaptcha_Account_Error(Exception):
|
|
"""
|
|
Raise error for reCaptcha provider account problem.
|
|
"""
|
|
|
|
|
|
class reCaptcha_Timeout(Exception):
|
|
"""
|
|
Raise error for reCaptcha provider taking too long.
|
|
"""
|
|
|
|
|
|
class reCaptcha_Bad_Parameter(NotImplementedError):
|
|
"""
|
|
Raise error for bad or missing Parameter.
|
|
"""
|
|
|
|
|
|
class reCaptcha_Bad_Job_ID(Exception):
|
|
"""
|
|
Raise error for invalid job id.
|
|
"""
|
|
|
|
|
|
class reCaptcha_Report_Error(Exception):
|
|
"""
|
|
Raise error for reCaptcha provider unable to report bad solve.
|
|
"""
|
|
|
|
|
|
class reCaptcha_Import_Error(Exception):
|
|
"""
|
|
Raise error for reCaptcha, cannot import a module.
|
|
"""
|