mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
f05b09f349
Updates rarfile to 3.1 Updates stevedore to 3.5.0 Updates appdirs to 1.4.4 Updates click to 8.1.3 Updates decorator to 5.1.1 Updates dogpile.cache to 1.1.8 Updates pbr to 5.11.0 Updates pysrt to 1.1.2 Updates pytz to 2022.6 Adds importlib-metadata version 3.1.1 Adds typing-extensions version 4.1.1 Adds zipp version 3.11.0
30 lines
673 B
Python
30 lines
673 B
Python
# -*- coding: utf-8 -*-
|
|
class Error(Exception):
|
|
"""Base class for exceptions in subliminal."""
|
|
pass
|
|
|
|
|
|
class ProviderError(Error):
|
|
"""Exception raised by providers."""
|
|
pass
|
|
|
|
|
|
class ConfigurationError(ProviderError):
|
|
"""Exception raised by providers when badly configured."""
|
|
pass
|
|
|
|
|
|
class AuthenticationError(ProviderError):
|
|
"""Exception raised by providers when authentication failed."""
|
|
pass
|
|
|
|
|
|
class ServiceUnavailable(ProviderError):
|
|
"""Exception raised when status is '503 Service Unavailable'."""
|
|
pass
|
|
|
|
|
|
class DownloadLimitExceeded(ProviderError):
|
|
"""Exception raised by providers when download limit is exceeded."""
|
|
pass
|