From 4510676bc0867aec8434ef2261fdfc19a67d4c1f Mon Sep 17 00:00:00 2001 From: Delgan Date: Thu, 17 May 2018 20:40:48 +0200 Subject: [PATCH] Make "PendulumException" a subclass of "Exception" (#215) --- pendulum/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pendulum/exceptions.py b/pendulum/exceptions.py index 88e0de44..02a89f3f 100644 --- a/pendulum/exceptions.py +++ b/pendulum/exceptions.py @@ -1,6 +1,6 @@ from .parsing.exceptions import ParserError -class PendulumException(BaseException): +class PendulumException(Exception): pass