mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
35 lines
699 B
Python
35 lines
699 B
Python
from __future__ import (absolute_import, print_function, division)
|
|
|
|
|
|
class ProxyException(Exception):
|
|
"""
|
|
Base class for all exceptions thrown by libmproxy.
|
|
"""
|
|
def __init__(self, message, cause=None):
|
|
"""
|
|
:param message: Error Message
|
|
:param cause: Exception object that caused this exception to be thrown.
|
|
"""
|
|
super(ProxyException, self).__init__(message)
|
|
self.cause = cause
|
|
|
|
|
|
class ProtocolException(ProxyException):
|
|
pass
|
|
|
|
|
|
class Socks5Exception(ProtocolException):
|
|
pass
|
|
|
|
|
|
class HttpException(ProtocolException):
|
|
pass
|
|
|
|
|
|
class InvalidCredentials(HttpException):
|
|
pass
|
|
|
|
|
|
class ServerException(ProxyException):
|
|
pass
|