aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/utils/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsie/utils/errors.py')
-rw-r--r--bsie/utils/errors.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/bsie/utils/errors.py b/bsie/utils/errors.py
index 8133cd4..7c7e6ed 100644
--- a/bsie/utils/errors.py
+++ b/bsie/utils/errors.py
@@ -1,8 +1,4 @@
"""Common BSIE exceptions.
-
-Part of the bsie module.
-A copy of the license is provided with the project.
-Author: Matthias Baumgartner, 2022
"""
# standard imports
import typing
@@ -42,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 ##