Source code for pyfvcom2.exceptions

"""Custom exceptions for PyFVCOM2."""

__all__ = [
    "PyFVCOM2Exception",
    "PyFVCOM2RuntimeError",
    "PyFVCOM2AttributeError",
    "PyFVCOM2ValueError",
    "PyFVCOM2TypeError",
    "PyFVCOM2FileNotFoundError",
]


[docs] class PyFVCOM2Exception(Exception): pass
[docs] class PyFVCOM2RuntimeError(PyFVCOM2Exception): pass
[docs] class PyFVCOM2AttributeError(PyFVCOM2Exception): pass
[docs] class PyFVCOM2ValueError(PyFVCOM2Exception): pass
[docs] class PyFVCOM2TypeError(PyFVCOM2Exception): pass
[docs] class PyFVCOM2FileNotFoundError(PyFVCOM2Exception): pass