10 lines
205 B
Python
10 lines
205 B
Python
class InvalidIndexNameError(ValueError):
|
|
pass
|
|
|
|
|
|
class InvalidUpdateExpression(ValueError):
|
|
pass
|
|
|
|
|
|
class ItemSizeTooLarge(Exception):
|
|
message = 'Item size has exceeded the maximum allowed size'
|