exceptions.py 346 Bytes
Newer Older
1
"""
2
Application-specific exceptions raised by the block structure framework.
3 4 5 6 7 8 9 10
"""


class TransformerException(Exception):
    """
    Exception class for Transformer related errors.
    """
    pass
11 12 13 14 15 16 17


class UsageKeyNotInBlockStructure(Exception):
    """
    Exception for when a usage key is not found within a block structure.
    """
    pass