diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-01-16 20:53:39 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-01-16 20:53:39 +0100 |
commit | afd165000c1661a9cca117a4844ad3f89d926fdb (patch) | |
tree | 865a1077c56d2f373af9cdc1b800516fdd0695f0 /bsie/utils | |
parent | 3f93be488638fdf6668e0e03e2b1634bb969ca80 (diff) | |
download | bsie-afd165000c1661a9cca117a4844ad3f89d926fdb.tar.gz bsie-afd165000c1661a9cca117a4844ad3f89d926fdb.tar.bz2 bsie-afd165000c1661a9cca117a4844ad3f89d926fdb.zip |
unsupported file format exception
Diffstat (limited to 'bsie/utils')
-rw-r--r-- | bsie/utils/errors.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bsie/utils/errors.py b/bsie/utils/errors.py index fbc16f7..8133cd4 100644 --- a/bsie/utils/errors.py +++ b/bsie/utils/errors.py @@ -42,4 +42,7 @@ class UnreachableError(ProgrammingError): class ParserError(_BSIEError): """Failed to parse due to invalid syntax or structures.""" +class UnsupportedFileFormatError(ReaderError): + """Failed to read a file format.""" + ## EOF ## |