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/
|
|
|
|
"""
|
2015-08-08 14:08:57 +00:00
|
|
|
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.
|
2015-08-08 14:08:57 +00:00
|
|
|
"""
|
2015-09-11 00:17:04 +00:00
|
|
|
def __init__(self, message):
|
2015-08-08 14:08:57 +00:00
|
|
|
"""
|
|
|
|
: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):
|
2015-09-11 00:17:04 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
|
2015-08-08 14:08:57 +00:00
|
|
|
class ServerException(ProxyException):
|
2015-08-11 18:27:34 +00:00
|
|
|
pass
|
2015-09-11 10:26:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ContentViewException(ProxyException):
|
|
|
|
pass
|