From 33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 15 Feb 2016 14:58:46 +0100 Subject: move mitmproxy --- libmproxy/exceptions.py | 57 ------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 libmproxy/exceptions.py (limited to 'libmproxy/exceptions.py') diff --git a/libmproxy/exceptions.py b/libmproxy/exceptions.py deleted file mode 100644 index a5d35263..00000000 --- a/libmproxy/exceptions.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -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 TlsProtocolException(ProtocolException): - pass - - -class ClientHandshakeException(TlsProtocolException): - - def __init__(self, message, server): - super(ClientHandshakeException, self).__init__(message) - self.server = server - - -class Socks5ProtocolException(ProtocolException): - pass - - -class HttpProtocolException(ProtocolException): - pass - - -class ServerException(ProxyException): - pass - - -class ContentViewException(ProxyException): - pass - - -class ReplayException(ProxyException): - pass - - -class ScriptException(ProxyException): - pass -- cgit v1.2.3