mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
51 lines
1018 B
Python
51 lines
1018 B
Python
"""
|
|
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.
|
|
"""
|
|
def __init__(self, message=None):
|
|
super(ProxyException, self).__init__(message)
|
|
|
|
|
|
class ProtocolException(ProxyException):
|
|
pass
|
|
|
|
|
|
class TlsException(ProtocolException):
|
|
pass
|
|
|
|
|
|
class ClientHandshakeException(TlsException):
|
|
def __init__(self, message, server):
|
|
super(ClientHandshakeException, self).__init__(message)
|
|
self.server = server
|
|
|
|
|
|
class Socks5Exception(ProtocolException):
|
|
pass
|
|
|
|
|
|
class HttpException(ProtocolException):
|
|
pass
|
|
|
|
|
|
class InvalidCredentials(HttpException):
|
|
pass
|
|
|
|
|
|
class ServerException(ProxyException):
|
|
pass
|
|
|
|
|
|
class ContentViewException(ProxyException):
|
|
pass
|