mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-11 09:17:47 +08:00
11 lines
220 B
Python
11 lines
220 B
Python
# 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
|