mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-10 16:57:45 +08:00
12 lines
259 B
Python
12 lines
259 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
|