Files
edx-platform/cms/djangoapps/contentstore/views/exception.py
2017-09-13 11:22:47 -04:00

18 lines
334 B
Python

"""
A common module for managing exceptions. Helps to avoid circular references
"""
class AssetNotFoundException(Exception):
"""
Raised when asset not found
"""
pass
class AssetSizeTooLargeException(Exception):
"""
Raised when the size of an uploaded asset exceeds the maximum size limit.
"""
pass