/usr/lib/python2.6/site-packages/boto/dynamodb
NameSizeModeActions
batch.py98100644editdlrm
batch.pyc98960644editdlrm
batch.pyo98960644editdlrm
condition.py38810644editdlrm
condition.pyc69990644editdlrm
condition.pyo69990644editdlrm
exceptions.py16870644editdlrm
exceptions.pyc29550644editdlrm
exceptions.pyo29550644editdlrm
item.py82800644editdlrm
item.pyc84790644editdlrm
item.pyo84790644editdlrm
layer1.py240570644editdlrm
layer1.pyc209920644editdlrm
layer1.pyo209920644editdlrm
layer2.py337320644editdlrm
layer2.pyc311810644editdlrm
layer2.pyo311810644editdlrm
schema.py39780644editdlrm
schema.pyc36440644editdlrm
schema.pyo36440644editdlrm
table.py218080644editdlrm
table.pyc223820644editdlrm
table.pyo223820644editdlrm
types.py112060644editdlrm
types.pyc144440644editdlrm
types.pyo144440644editdlrm
__init__.py16970644editdlrm
__init__.pyc9780644editdlrm
__init__.pyo9780644editdlrm
Edit: /usr/lib/python2.6/site-packages/boto/dynamodb/exceptions.py (1687B)
""" Exceptions that are specific to the dynamodb module. """ from boto.exception import BotoServerError, BotoClientError from boto.exception import DynamoDBResponseError class DynamoDBExpiredTokenError(BotoServerError): """ Raised when a DynamoDB security token expires. This is generally boto's (or the user's) notice to renew their DynamoDB security tokens. """ pass class DynamoDBKeyNotFoundError(BotoClientError): """ Raised when attempting to retrieve or interact with an item whose key can't be found. """ pass class DynamoDBItemError(BotoClientError): """ Raised when invalid parameters are passed when creating a new Item in DynamoDB. """ pass class DynamoDBNumberError(BotoClientError): """ Raised in the event of incompatible numeric type casting. """ pass class DynamoDBConditionalCheckFailedError(DynamoDBResponseError): """ Raised when a ConditionalCheckFailedException response is received. This happens when a conditional check, expressed via the expected_value paramenter, fails. """ pass class DynamoDBValidationError(DynamoDBResponseError): """ Raised when a ValidationException response is received. This happens when one or more required parameter values are missing, or if the item has exceeded the 64Kb size limit. """ pass class DynamoDBThroughputExceededError(DynamoDBResponseError): """ Raised when the provisioned throughput has been exceeded. Normally, when provisioned throughput is exceeded the operation is retried. If the retries are exhausted then this exception will be raised. """ pass