diff --git a/patroni/exceptions.py b/patroni/exceptions.py index 5c13f3e0..e6159d47 100644 --- a/patroni/exceptions.py +++ b/patroni/exceptions.py @@ -1,8 +1,4 @@ class PatroniException(Exception): - pass - - -class DCSError(PatroniException): """Parent class for all kind of exceptions related to selected distributed configuration store""" @@ -15,3 +11,7 @@ class DCSError(PatroniException): "'foo'" """ return repr(self.value) + + +class DCSError(PatroniException): + pass