Source code for pypeit.pkg.exceptions

"""
Provides pypeit specific exceptions.
"""

__all__ = [
    'PypeItError',
    'PypeItBitMaskError',
    'PypeItDataModelError',
    'PypeItPathError'
]

[docs] class PypeItError(Exception): pass
[docs] class PypeItBitMaskError(PypeItError): pass
[docs] class PypeItDataModelError(PypeItError): pass
[docs] class PypeItPathError(PypeItError): pass