Source code for fsglue.exceptions

[docs]class FsglueException(Exception): """Common base exception""" pass
[docs]class FsglueValidationError(FsglueException): """Error caused by invalid input""" pass
[docs]class FsglueProgrammingError(FsglueException): """Error caused by misuse of fsglue""" pass
[docs]class FsglueDocumentNotFound(FsglueException): """Error caused by absence of target document""" pass