mirror of
https://github.com/outbackdingo/patroni.git
synced 2026-08-25 14:53:37 +00:00
33 lines
587 B
Python
33 lines
587 B
Python
from click import ClickException
|
|
|
|
|
|
class PatroniException(Exception):
|
|
|
|
"""Parent class for all kind of exceptions related to selected distributed configuration store"""
|
|
|
|
def __init__(self, value):
|
|
self.value = value
|
|
|
|
def __str__(self):
|
|
"""
|
|
>>> str(PatroniException('foo'))
|
|
"'foo'"
|
|
"""
|
|
return repr(self.value)
|
|
|
|
|
|
class PatroniCtlException(ClickException):
|
|
pass
|
|
|
|
|
|
class PostgresException(PatroniException):
|
|
pass
|
|
|
|
|
|
class DCSError(PatroniException):
|
|
pass
|
|
|
|
|
|
class PostgresConnectionException(PostgresException):
|
|
pass
|