You need to sign in or sign up before continuing.
exception.py 184 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
"""
A common module for managing exceptions. Helps to avoid circular references
"""


class AssetNotFoundException(Exception):
    """
    Raised when asset not found
    """
    pass