Skip to content

Commit 9618fe2

Browse files
authored
Update docs framework & exception docs (#1145)
1 parent caa8f68 commit 9618fe2

File tree

5 files changed

+63
-13
lines changed

5 files changed

+63
-13
lines changed

.readthedocs.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
version: 2
6+
7+
build:
8+
os: ubuntu-22.04
9+
tools:
10+
python: "3.11"
11+
12+
# Build documentation in the docs/ directory with Sphinx
13+
sphinx:
14+
configuration: docs/conf.py
15+
16+
# Optionally declare the Python requirements required to build your docs
17+
python:
18+
install:
19+
- requirements: docs/requirements.txt

docs/api.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Low Level API
2828
Exceptions
2929
----------
3030

31+
.. autoexception:: pynamodb.exceptions.PynamoDBException
3132
.. autoexception:: pynamodb.exceptions.PynamoDBConnectionError
3233
.. autoexception:: pynamodb.exceptions.DeleteError
3334
.. autoexception:: pynamodb.exceptions.QueryError
@@ -38,4 +39,8 @@ Exceptions
3839
.. autoexception:: pynamodb.exceptions.TableError
3940
.. autoexception:: pynamodb.exceptions.TableDoesNotExist
4041
.. autoexception:: pynamodb.exceptions.DoesNotExist
41-
42+
.. autoexception:: pynamodb.exceptions.TransactWriteError
43+
.. autoexception:: pynamodb.exceptions.TransactGetError
44+
.. autoexception:: pynamodb.exceptions.InvalidStateError
45+
.. autoexception:: pynamodb.exceptions.AttributeDeserializationError
46+
.. autoexception:: pynamodb.exceptions.AttributeNullError

docs/conf.py

+4
Original file line numberDiff line numberDiff line change
@@ -267,3 +267,7 @@
267267

268268
# If true, do not generate a @detailmenu in the "Top" node's menu.
269269
#texinfo_no_detailmenu = False
270+
271+
autodoc_default_options = {
272+
'members': True,
273+
}

docs/requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.[signals]
2-
sphinx-rtd-theme==0.4.3
2+
sphinx>=5
3+
sphinx-rtd-theme==1.1.1

pynamodb/exceptions.py

+32-11
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,35 @@
88

99

1010
class PynamoDBException(Exception):
11-
msg: str
12-
1311
"""
14-
A common exception class
12+
Base class for all PynamoDB exceptions.
1513
"""
14+
15+
msg: str
16+
1617
def __init__(self, msg: Optional[str] = None, cause: Optional[Exception] = None) -> None:
1718
self.msg = msg if msg is not None else self.msg
1819
self.cause = cause
1920
super(PynamoDBException, self).__init__(self.msg)
2021

2122
@property
2223
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+
"""
2333
return getattr(self.cause, 'response', {}).get('Error', {}).get('Code')
2434

2535
@property
2636
def cause_response_message(self) -> Optional[str]:
37+
"""
38+
The human-readable description of the error returned by DynamoDB.
39+
"""
2740
return getattr(self.cause, 'response', {}).get('Error', {}).get('Message')
2841

2942

@@ -101,35 +114,37 @@ def __init__(self, table_name: str) -> None:
101114

102115
class TransactWriteError(PynamoDBException):
103116
"""
104-
Raised when a TransactWrite operation fails
117+
Raised when a :class:`~pynamodb.transactions.TransactWrite` operation fails.
105118
"""
106-
pass
107119

108120

109121
class TransactGetError(PynamoDBException):
110122
"""
111-
Raised when a TransactGet operation fails
123+
Raised when a :class:`~pynamodb.transactions.TransactGet` operation fails.
112124
"""
113-
pass
114125

115126

116127
class InvalidStateError(PynamoDBException):
117128
"""
118-
Raises when the internal state of an operation context is invalid
129+
Raises when the internal state of an operation context is invalid.
119130
"""
120131
msg = "Operation in invalid state"
121132

122133

123134
class AttributeDeserializationError(TypeError):
124135
"""
125-
Raised when attribute type is invalid
136+
Raised when attribute type is invalid during deserialization.
126137
"""
127138
def __init__(self, attr_name: str, attr_type: str):
128139
msg = "Cannot deserialize '{}' attribute from type: {}".format(attr_name, attr_type)
129140
super(AttributeDeserializationError, self).__init__(msg)
130141

131142

132143
class AttributeNullError(ValueError):
144+
"""
145+
Raised when an attribute which is not nullable (:code:`null=False`) is unset during serialization.
146+
"""
147+
133148
def __init__(self, attr_name: str) -> None:
134149
self.attr_path = attr_name
135150

@@ -141,8 +156,14 @@ def prepend_path(self, attr_name: str) -> None:
141156

142157

143158
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+
"""
146167
if not verbose_properties:
147168
verbose_properties = {}
148169

0 commit comments

Comments
 (0)