Server : Apache System : Linux iad1-shared-b8-43 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64 User : dh_edsupp ( 6597262) PHP Version : 8.2.26 Disable Function : NONE Directory : /lib/python3/dist-packages/boto/cloudsearch2/ |
Upload File : |
""" 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