8
8
9
9
10
10
class PynamoDBException (Exception ):
11
- msg : str
12
-
13
11
"""
14
- A common exception class
12
+ Base class for all PynamoDB exceptions.
15
13
"""
14
+
15
+ msg : str
16
+
16
17
def __init__ (self , msg : Optional [str ] = None , cause : Optional [Exception ] = None ) -> None :
17
18
self .msg = msg if msg is not None else self .msg
18
19
self .cause = cause
19
20
super (PynamoDBException , self ).__init__ (self .msg )
20
21
21
22
@property
22
23
def cause_response_code (self ) -> Optional [str ]:
24
+ """
25
+ The DynamoDB response code such as:
26
+
27
+ - ``ConditionalCheckFailedException``
28
+ - ``ProvisionedThroughputExceededException``
29
+ - ``TransactionCanceledException``
30
+
31
+ Inspect this value to determine the cause of the error and handle it.
32
+ """
23
33
return getattr (self .cause , 'response' , {}).get ('Error' , {}).get ('Code' )
24
34
25
35
@property
26
36
def cause_response_message (self ) -> Optional [str ]:
37
+ """
38
+ The human-readable description of the error returned by DynamoDB.
39
+ """
27
40
return getattr (self .cause , 'response' , {}).get ('Error' , {}).get ('Message' )
28
41
29
42
@@ -101,35 +114,37 @@ def __init__(self, table_name: str) -> None:
101
114
102
115
class TransactWriteError (PynamoDBException ):
103
116
"""
104
- Raised when a TransactWrite operation fails
117
+ Raised when a :class:`~pynamodb.transactions. TransactWrite` operation fails.
105
118
"""
106
- pass
107
119
108
120
109
121
class TransactGetError (PynamoDBException ):
110
122
"""
111
- Raised when a TransactGet operation fails
123
+ Raised when a :class:`~pynamodb.transactions. TransactGet` operation fails.
112
124
"""
113
- pass
114
125
115
126
116
127
class InvalidStateError (PynamoDBException ):
117
128
"""
118
- Raises when the internal state of an operation context is invalid
129
+ Raises when the internal state of an operation context is invalid.
119
130
"""
120
131
msg = "Operation in invalid state"
121
132
122
133
123
134
class AttributeDeserializationError (TypeError ):
124
135
"""
125
- Raised when attribute type is invalid
136
+ Raised when attribute type is invalid during deserialization.
126
137
"""
127
138
def __init__ (self , attr_name : str , attr_type : str ):
128
139
msg = "Cannot deserialize '{}' attribute from type: {}" .format (attr_name , attr_type )
129
140
super (AttributeDeserializationError , self ).__init__ (msg )
130
141
131
142
132
143
class AttributeNullError (ValueError ):
144
+ """
145
+ Raised when an attribute which is not nullable (:code:`null=False`) is unset during serialization.
146
+ """
147
+
133
148
def __init__ (self , attr_name : str ) -> None :
134
149
self .attr_path = attr_name
135
150
@@ -141,8 +156,14 @@ def prepend_path(self, attr_name: str) -> None:
141
156
142
157
143
158
class VerboseClientError (botocore .exceptions .ClientError ):
144
- def __init__ (self , error_response : Any , operation_name : str , verbose_properties : Optional [Any ] = None ):
145
- """ Modify the message template to include the desired verbose properties """
159
+ def __init__ (self , error_response : Any , operation_name : str , verbose_properties : Optional [Any ] = None ) -> None :
160
+ """
161
+ Like ClientError, but with a verbose message.
162
+
163
+ :param error_response: Error response in shape expected by ClientError.
164
+ :param operation_name: The name of the operation that failed.
165
+ :param verbose_properties: A dict of properties to include in the verbose message.
166
+ """
146
167
if not verbose_properties :
147
168
verbose_properties = {}
148
169
0 commit comments