File: exceptions.py

package info (click to toggle)
python-snitun 0.45.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 632 kB
  • sloc: python: 6,646; sh: 5; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 841 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""SniTun Exceptions."""


class SniTunError(Exception):
    """Base Exception for SniTun exceptions."""


class SniTunChallengeError(SniTunError):
    """Raise if a challenge error is occure."""


class SniTunInvalidPeer(SniTunError):
    """Raise if peer config is invalid."""


class ParseSNIError(SniTunError):
    """Invalid ClientHello data."""


class ParseSNIIncompleteError(ParseSNIError):
    """Incomplete ClientHello data."""


class MultiplexerTransportError(SniTunError):
    """Raise if multiplexer have an problem with peer."""


class MultiplexerTransportClose(SniTunError):
    """Raise if connection to peer is closed."""


class MultiplexerTransportDecrypt(SniTunError):
    """Raise if decryption of message fails."""


class SniTunConnectionError(SniTunError):
    """Raise if SniTun client can't connect to server."""