diff options
Diffstat (limited to 'libmproxy/exceptions.py')
-rw-r--r-- | libmproxy/exceptions.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libmproxy/exceptions.py b/libmproxy/exceptions.py index e2bde980..a5d35263 100644 --- a/libmproxy/exceptions.py +++ b/libmproxy/exceptions.py @@ -9,9 +9,11 @@ from __future__ import (absolute_import, print_function, division) class ProxyException(Exception): + """ Base class for all exceptions thrown by libmproxy. """ + def __init__(self, message=None): super(ProxyException, self).__init__(message) @@ -25,6 +27,7 @@ class TlsProtocolException(ProtocolException): class ClientHandshakeException(TlsProtocolException): + def __init__(self, message, server): super(ClientHandshakeException, self).__init__(message) self.server = server @@ -51,4 +54,4 @@ class ReplayException(ProxyException): class ScriptException(ProxyException): - pass
\ No newline at end of file + pass |