/usr/lib/python2.6/site-packages/boto/cloudsearch2
NameSizeModeActions
document.py102170644editdlrm
document.pyc99300644editdlrm
document.pyo99300644editdlrm
domain.py212470644editdlrm
domain.pyc201740644editdlrm
domain.pyo201740644editdlrm
exceptions.py8180644editdlrm
exceptions.pyc19620644editdlrm
exceptions.pyo19620644editdlrm
layer1.py324670644editdlrm
layer1.pyc318300644editdlrm
layer1.pyo318300644editdlrm
layer2.py37550644editdlrm
layer2.pyc29920644editdlrm
layer2.pyo29920644editdlrm
optionstatus.py81210644editdlrm
optionstatus.pyc89530644editdlrm
optionstatus.pyo89530644editdlrm
search.py134300644editdlrm
search.pyc136900644editdlrm
search.pyo136900644editdlrm
__init__.py16780644editdlrm
__init__.pyc10050644editdlrm
__init__.pyo10050644editdlrm
Edit: /usr/lib/python2.6/site-packages/boto/cloudsearch2/exceptions.py (818B)
""" 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