U
    3ìd—  ã                   @   s”   d Z ddlmZmZ ddlmZ G dd„ deƒZG dd„ deƒZG dd	„ d	eƒZG d
d„ deƒZG dd„ deƒZ	G dd„ deƒZ
G dd„ deƒZdS )z6
Exceptions that are specific to the dynamodb module.
é    )ÚBotoServerErrorÚBotoClientError)ÚDynamoDBResponseErrorc                   @   s   e Zd ZdZdS )ÚDynamoDBExpiredTokenErrorz•
    Raised when a DynamoDB security token expires. This is generally boto's
    (or the user's) notice to renew their DynamoDB security tokens.
    N©Ú__name__Ú
__module__Ú__qualname__Ú__doc__© r   r   ú</tmp/pip-unpacked-wheel-d7dsrkjd/boto/dynamodb/exceptions.pyr      s   r   c                   @   s   e Zd ZdZdS )ÚDynamoDBKeyNotFoundErrorzc
    Raised when attempting to retrieve or interact with an item whose key
    can't be found.
    Nr   r   r   r   r   r      s   r   c                   @   s   e Zd ZdZdS )ÚDynamoDBItemErrorz]
    Raised when invalid parameters are passed when creating a
    new Item in DynamoDB.
    Nr   r   r   r   r   r      s   r   c                   @   s   e Zd ZdZdS )ÚDynamoDBNumberErrorzC
    Raised in the event of incompatible numeric type casting.
    Nr   r   r   r   r   r       s   r   c                   @   s   e Zd ZdZdS )Ú#DynamoDBConditionalCheckFailedErrorz°
    Raised when a ConditionalCheckFailedException response is received.
    This happens when a conditional check, expressed via the expected_value
    paramenter, fails.
    Nr   r   r   r   r   r   '   s   r   c                   @   s   e Zd ZdZdS )ÚDynamoDBValidationErrorz¿
    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.
    Nr   r   r   r   r   r   0   s   r   c                   @   s   e Zd ZdZdS )ÚDynamoDBThroughputExceededErrorzÝ
    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.
    Nr   r   r   r   r   r   9   s   r   N)r
   Zboto.exceptionr   r   r   r   r   r   r   r   r   r   r   r   r   r   Ú<module>   s   		