diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-27 10:12:18 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-27 10:36:28 +0100 |
commit | 8c375383148f100f03aed52827ac513f145078c2 (patch) | |
tree | dbae3b5d4d603e5e226477f1938119e2acfcfc1f /libmproxy/exceptions.py | |
parent | c2bb29f669cd80509f4efe205551a9cf5fc29770 (diff) | |
download | mitmproxy-8c375383148f100f03aed52827ac513f145078c2.tar.gz mitmproxy-8c375383148f100f03aed52827ac513f145078c2.tar.bz2 mitmproxy-8c375383148f100f03aed52827ac513f145078c2.zip |
code formatting: fix whitespace issues
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 |