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.
|
|
|
|
"""
|
|
|
|
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
|
|
|
|
|
|
|
|
|
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
|