diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-08-08 16:08:57 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-08-11 20:32:13 +0200 |
commit | 026330a3b014f24f095b839b29186036854de3bc (patch) | |
tree | c5770ef28332b61f56b5435136e8dcd95340ed1d /libmproxy/exceptions.py | |
parent | 314e0f5839fcd4a1c35323f61938b207232de287 (diff) | |
download | mitmproxy-026330a3b014f24f095b839b29186036854de3bc.tar.gz mitmproxy-026330a3b014f24f095b839b29186036854de3bc.tar.bz2 mitmproxy-026330a3b014f24f095b839b29186036854de3bc.zip |
cleaner Exceptions, ssl -> tls, upstream proxy mode
Diffstat (limited to 'libmproxy/exceptions.py')
-rw-r--r-- | libmproxy/exceptions.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libmproxy/exceptions.py b/libmproxy/exceptions.py new file mode 100644 index 00000000..4d98c024 --- /dev/null +++ b/libmproxy/exceptions.py @@ -0,0 +1,22 @@ +from __future__ import (absolute_import, print_function, division) + + +class ProxyException(Exception): + """ + Base class for all exceptions thrown by libmproxy. + """ + def __init__(self, message, cause=None): + """ + :param message: Error Message + :param cause: Exception object that caused this exception to be thrown. + """ + super(ProxyException, self).__init__(message) + self.cause = cause + + +class ProtocolException(ProxyException): + pass + + +class ServerException(ProxyException): + pass
\ No newline at end of file |