aboutsummaryrefslogtreecommitdiff
path: root/pyhon/exceptions.py
blob: e4fa290b5411c3c53489fc2b832b3ec4e9fcc9e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class HonAuthenticationError(Exception):
    pass


class HonNoAuthenticationNeeded(Exception):
    pass


class NoSessionException(Exception):
    pass


class NoAuthenticationException(Exception):
    pass


class ApiError(Exception):
    pass