diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-23 16:25:51 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-23 16:25:51 +0100 |
commit | ed2074ae88f2db6cb6b38716b43b35e29eb2e16c (patch) | |
tree | f84a28414c4e22e3f3c25ca430e19ff42a1ec2d9 /bsie/base/errors.py | |
parent | 057e09d6537bf5c39815661a75819081e3e5fda7 (diff) | |
download | bsie-ed2074ae88f2db6cb6b38716b43b35e29eb2e16c.tar.gz bsie-ed2074ae88f2db6cb6b38716b43b35e29eb2e16c.tar.bz2 bsie-ed2074ae88f2db6cb6b38716b43b35e29eb2e16c.zip |
filematcher: check file properties, formulate them as a string
Diffstat (limited to 'bsie/base/errors.py')
-rw-r--r-- | bsie/base/errors.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bsie/base/errors.py b/bsie/base/errors.py index dc3c30e..5fafd5b 100644 --- a/bsie/base/errors.py +++ b/bsie/base/errors.py @@ -39,4 +39,7 @@ class ProgrammingError(_BSIEError): class UnreachableError(ProgrammingError): """Bravo, you've reached a point in code that should logically not be reachable.""" +class ParserError(_BSIEError): + """Failed to parse due to invalid syntax or structures.""" + ## EOF ## |