_exceptions.py
changeset 9205 ea32e964fbf8
parent 9175 a7412e884d7b
child 9347 bd841d6ae723
equal deleted inserted replaced
9149:31ed9dd946d1 9205:ea32e964fbf8
    59     """raised when a bad connection id is given or when an attempt to establish
    59     """raised when a bad connection id is given or when an attempt to establish
    60     a connection failed
    60     a connection failed
    61     """
    61     """
    62 
    62 
    63 class AuthenticationError(ConnectionError):
    63 class AuthenticationError(ConnectionError):
    64     """raised when when an attempt to establish a connection failed do to wrong
    64     """raised when an attempt to establish a connection failed due to wrong
    65     connection information (login / password or other authentication token)
    65     connection information (login / password or other authentication token)
    66     """
    66     """
    67 
    67 
    68 class BadConnectionId(ConnectionError):
    68 class BadConnectionId(ConnectionError):
    69     """raised when a bad connection id is given"""
    69     """raised when a bad connection id is given"""