diff options
| author | 2024-02-24 13:04:40 +0800 | |
|---|---|---|
| committer | 2024-02-24 13:04:40 +0800 | |
| commit | 57b2835ecc6c9b30920e929985b9d7cafcb7c457 (patch) | |
| tree | df0c1221d4766365c231e8bd02e6d8e7bdb63420 /nivis-python/exception.py | |
| parent | 45e2f3631bc8d13dacba57e705c7591e7e707b2a (diff) | |
| download | TRPGNivis-57b2835ecc6c9b30920e929985b9d7cafcb7c457.tar.gz TRPGNivis-57b2835ecc6c9b30920e929985b9d7cafcb7c457.zip | |
chore(project): add ruff deps
chore(lint): format code with ruff
chore(project): add tool.ruff format section
Diffstat (limited to 'nivis-python/exception.py')
| -rw-r--r-- | nivis-python/exception.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nivis-python/exception.py b/nivis-python/exception.py index a8b7201..0ec22e5 100644 --- a/nivis-python/exception.py +++ b/nivis-python/exception.py @@ -10,7 +10,7 @@ class PsiException(Exception): ``` """ - + class ValueError(PsiException): """ An exception class for value-related errors in Psi code. @@ -23,6 +23,7 @@ class ValueError(PsiException): ``` """ + class GrammarError(PsiException): """ An exception class for grammar-related errors in Psi code. |
