diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-03-02 08:56:57 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-03-02 08:56:57 +0100 |
commit | 70d77819a84c73292825b81f952e162bb30753d7 (patch) | |
tree | 60f2c9e752420338a941bb1e67af8ce52942e3d5 /bsie/utils/errors.py | |
parent | 4b5c4d486bb4f0f4da2e25ad464e8336a781cdcb (diff) | |
download | bsie-70d77819a84c73292825b81f952e162bb30753d7.tar.gz bsie-70d77819a84c73292825b81f952e162bb30753d7.tar.bz2 bsie-70d77819a84c73292825b81f952e162bb30753d7.zip |
reader error: untangle generic from unsupported format errors
Diffstat (limited to 'bsie/utils/errors.py')
-rw-r--r-- | bsie/utils/errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bsie/utils/errors.py b/bsie/utils/errors.py index e71fc60..7c7e6ed 100644 --- a/bsie/utils/errors.py +++ b/bsie/utils/errors.py @@ -38,7 +38,7 @@ class UnreachableError(ProgrammingError): class ParserError(_BSIEError): """Failed to parse due to invalid syntax or structures.""" -class UnsupportedFileFormatError(ReaderError): +class UnsupportedFileFormatError(_BSIEError): """Failed to read a file format.""" ## EOF ## |