bazarr/libs/subliminal_patch/exceptions.py

12 lines
220 B
Python
Raw Normal View History

2018-10-31 16:08:29 +00:00
# coding=utf-8
from subliminal import ProviderError
class TooManyRequests(ProviderError):
"""Exception raised by providers when too many requests are made."""
pass
class APIThrottled(ProviderError):
pass