18 lines
434 B
Python
18 lines
434 B
Python
"""
|
|
A common module for managing exceptions. Helps to avoid circular references
|
|
"""
|
|
|
|
|
|
class AssetNotFoundException(Exception):
|
|
"""
|
|
Raised when asset not found
|
|
"""
|
|
pass # lint-amnesty, pylint: disable=unnecessary-pass
|
|
|
|
|
|
class AssetSizeTooLargeException(Exception):
|
|
"""
|
|
Raised when the size of an uploaded asset exceeds the maximum size limit.
|
|
"""
|
|
pass # lint-amnesty, pylint: disable=unnecessary-pass
|