mitmproxy/libmproxy/exceptions.py

58 lines
1.2 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-03 16:55:38 +00:00
Args:
message: the error message
cause: (optional) an error object that caused this exception, e.g. an IOError.
"""
def __init__(self, message):
"""
:param message: Error Message
"""
super(ProxyException, self).__init__(message)
class ProtocolException(ProxyException):
pass
2015-09-07 11:51:46 +00:00
class TlsException(ProtocolException):
pass
2015-09-10 23:39:33 +00:00
class ClientHandshakeException(TlsException):
def __init__(self, message, server):
super(ClientHandshakeException, self).__init__(message)
self.server = server
2015-09-10 23:39:33 +00:00
2015-08-29 23:21:58 +00:00
class Socks5Exception(ProtocolException):
pass
2015-08-11 18:27:34 +00:00
class HttpException(ProtocolException):
pass
class InvalidCredentials(HttpException):
pass
class ServerException(ProxyException):
2015-08-11 18:27:34 +00:00
pass
class ContentViewException(ProxyException):
pass