mirror of https://github.com/evilhero/mylar
55 lines
1.9 KiB
Python
55 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2008-2013 Erik Svensson <erik.public@gmail.com>
|
|
# Licensed under the MIT license.
|
|
|
|
from six import string_types, integer_types
|
|
|
|
class TransmissionError(Exception):
|
|
"""
|
|
This exception is raised when there has occurred an error related to
|
|
communication with Transmission. It is a subclass of Exception.
|
|
"""
|
|
def __init__(self, message='', original=None):
|
|
Exception.__init__(self)
|
|
self.message = message
|
|
self.original = original
|
|
|
|
def __str__(self):
|
|
if self.original:
|
|
original_name = type(self.original).__name__
|
|
return '%s Original exception: %s, "%s"' % (self.message, original_name, str(self.original))
|
|
else:
|
|
return self.message
|
|
|
|
class HTTPHandlerError(Exception):
|
|
"""
|
|
This exception is raised when there has occurred an error related to
|
|
the HTTP handler. It is a subclass of Exception.
|
|
"""
|
|
def __init__(self, httpurl=None, httpcode=None, httpmsg=None, httpheaders=None, httpdata=None):
|
|
Exception.__init__(self)
|
|
self.url = ''
|
|
self.code = 600
|
|
self.message = ''
|
|
self.headers = {}
|
|
self.data = ''
|
|
if isinstance(httpurl, string_types):
|
|
self.url = httpurl
|
|
if isinstance(httpcode, integer_types):
|
|
self.code = httpcode
|
|
if isinstance(httpmsg, string_types):
|
|
self.message = httpmsg
|
|
if isinstance(httpheaders, dict):
|
|
self.headers = httpheaders
|
|
if isinstance(httpdata, string_types):
|
|
self.data = httpdata
|
|
|
|
def __repr__(self):
|
|
return '<HTTPHandlerError %d, %s>' % (self.code, self.message)
|
|
|
|
def __str__(self):
|
|
return 'HTTPHandlerError %d: %s' % (self.code, self.message)
|
|
|
|
def __unicode__(self):
|
|
return 'HTTPHandlerError %d: %s' % (self.code, self.message)
|