Source code for delphin.eds._exceptions


from delphin.exceptions import (
    PyDelphinException,
    PyDelphinSyntaxError,
    PyDelphinWarning,
)


[docs] class EDSError(PyDelphinException): """Raises on invalid EDS operations."""
[docs] class EDSSyntaxError(PyDelphinSyntaxError): """Raised when an invalid EDS string is encountered."""
[docs] class EDSWarning(PyDelphinWarning): """Issued when an EDS may be incorrect or incomplete."""