From db51f7f103bbbd6c91c8f47d75b3482ef8939691 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 17 Dec 2023 15:32:20 +0100 Subject: Adding upstream version 3.0.0. Signed-off-by: Daniel Baumann --- src/pendulum/exceptions.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/pendulum/exceptions.py (limited to 'src/pendulum/exceptions.py') diff --git a/src/pendulum/exceptions.py b/src/pendulum/exceptions.py new file mode 100644 index 0000000..1687211 --- /dev/null +++ b/src/pendulum/exceptions.py @@ -0,0 +1,13 @@ +from __future__ import annotations + +from pendulum.parsing.exceptions import ParserError + + +class PendulumException(Exception): + pass + + +__all__ = [ + "ParserError", + "PendulumException", +] -- cgit v1.2.3