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