from . import CligramError
[docs]
class ConnectionError(CligramError):
"""Raised when a connection error occurs."""
pass
[docs]
class NoWorkingConnectionError(ConnectionError):
"""Raised when no working connection (direct or proxy) is available."""
pass