moto/moto/dynamodb2/exceptions.py

11 lines
205 B
Python
Raw Normal View History

class InvalidIndexNameError(ValueError):
pass
class InvalidUpdateExpression(ValueError):
pass
2019-10-14 10:02:22 +01:00
class ItemSizeTooLarge(Exception):
2019-10-31 08:44:26 -07:00
message = "Item size has exceeded the maximum allowed size"