mitmproxy/libmproxy/exceptions.py

58 lines
1.1 KiB
Python
Raw Normal View History

2015-09-03 16:55:38 +00:00
"""
We try to be very hygienic regarding the exceptions we throw:
Every Exception mitmproxy raises shall be a subclass of ProxyException.
See also: http://lucumr.pocoo.org/2014/10/16/on-error-handling/
"""
from __future__ import (absolute_import, print_function, division)
class ProxyException(Exception):
2016-01-27 09:12:18 +00:00
"""
Base class for all exceptions thrown by libmproxy.
"""
2016-01-27 09:12:18 +00:00
2015-09-14 21:58:06 +00:00
def __init__(self, message=None):
super(ProxyException, self).__init__(message)
class ProtocolException(ProxyException):
pass
2015-09-17 00:13:28 +00:00
class TlsProtocolException(ProtocolException):
2015-09-07 11:51:46 +00:00
pass
2015-09-17 00:13:28 +00:00
class ClientHandshakeException(TlsProtocolException):
2016-01-27 09:12:18 +00:00
def __init__(self, message, server):
super(ClientHandshakeException, self).__init__(message)
self.server = server
2015-09-10 23:39:33 +00:00
2015-09-17 00:13:28 +00:00
class Socks5ProtocolException(ProtocolException):
2015-08-29 23:21:58 +00:00
pass
2015-09-16 16:45:22 +00:00
class HttpProtocolException(ProtocolException):
2015-08-11 18:27:34 +00:00
pass
2015-09-16 16:45:22 +00:00
class ServerException(ProxyException):
2015-08-11 18:27:34 +00:00
pass
2015-09-16 16:45:22 +00:00
class ContentViewException(ProxyException):
2015-08-11 18:27:34 +00:00
pass
2015-09-16 16:45:22 +00:00
class ReplayException(ProxyException):
pass
2015-11-14 03:21:38 +00:00
class ScriptException(ProxyException):
2016-01-27 09:12:18 +00:00
pass