diff options
Diffstat (limited to '.venv/lib/python3.12/site-packages/isodate/isoerror.py')
| -rw-r--r-- | .venv/lib/python3.12/site-packages/isodate/isoerror.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/isodate/isoerror.py b/.venv/lib/python3.12/site-packages/isodate/isoerror.py new file mode 100644 index 00000000..068429f2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/isodate/isoerror.py @@ -0,0 +1,7 @@ +""" +This module defines all exception classes in the whole package. +""" + + +class ISO8601Error(ValueError): + """Raised when the given ISO string can not be parsed.""" |
