mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-07 05:31:11 -07:00
29 lines
674 B
Python
29 lines
674 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 TooManyRequests(ProviderError):
|
|
"""Exception raised by providers when too many requests are made."""
|
|
pass
|
|
|
|
|
|
class DownloadLimitExceeded(ProviderError):
|
|
"""Exception raised by providers when download limit is exceeded."""
|
|
pass
|