mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 09:37:25 +00:00
afd9cd6ddb
# Conflicts: # bazarr/get_movies.py # libs/subliminal_patch/core.py # libs/subliminal_patch/providers/subdivx.py # libs/subliminal_patch/providers/titlovi.py
17 lines
397 B
Python
17 lines
397 B
Python
# coding=utf-8
|
|
from __future__ import absolute_import
|
|
from subliminal import ProviderError
|
|
|
|
|
|
class TooManyRequests(ProviderError):
|
|
"""Exception raised by providers when too many requests are made."""
|
|
pass
|
|
|
|
|
|
class APIThrottled(ProviderError):
|
|
pass
|
|
|
|
|
|
class ParseResponseError(ProviderError):
|
|
"""Exception raised by providers when they are not able to parse the response."""
|
|
pass
|