mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
46 lines
818 B
Python
46 lines
818 B
Python
"""
|
|
Exceptions that are specific to the cloudsearch2 module.
|
|
"""
|
|
from boto.exception import BotoServerError
|
|
|
|
|
|
class InvalidTypeException(BotoServerError):
|
|
"""
|
|
Raised when an invalid record type is passed to CloudSearch.
|
|
"""
|
|
pass
|
|
|
|
|
|
class LimitExceededException(BotoServerError):
|
|
"""
|
|
Raised when a limit has been exceeded.
|
|
"""
|
|
pass
|
|
|
|
|
|
class InternalException(BotoServerError):
|
|
"""
|
|
A generic server-side error.
|
|
"""
|
|
pass
|
|
|
|
|
|
class DisabledOperationException(BotoServerError):
|
|
"""
|
|
Raised when an operation has been disabled.
|
|
"""
|
|
pass
|
|
|
|
|
|
class ResourceNotFoundException(BotoServerError):
|
|
"""
|
|
Raised when a requested resource does not exist.
|
|
"""
|
|
pass
|
|
|
|
|
|
class BaseException(BotoServerError):
|
|
"""
|
|
A generic server-side error.
|
|
"""
|
|
pass
|