mitmproxy/libmproxy/exceptions.py

51 lines
1.0 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):
"""
Base class for all exceptions thrown by libmproxy.
"""
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):
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