forked from timotheus/ebaysdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexception.py
51 lines (40 loc) · 1.38 KB
/
exception.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''
class ConnectionError(Exception):
def __init__(self, msg, response):
super(ConnectionError, self).__init__(u'%s' % msg)
self.message = u'%s' % msg
self.response = response
def __str__(self):
return repr(self.message)
class ConnectionConfigError(Exception):
def __init__(self, msg):
super(ConnectionConfigError, self).__init__(u'%s' % msg)
self.message = u'%s' % msg
def __str__(self):
return repr(self.message)
class ConnectionResponseError(Exception):
def __init__(self, msg, response):
super(ConnectionResponseError, self).__init__(u'%s' % msg)
self.message = u'%s' % msg
self.response = response
def __str__(self):
return repr(self.message)
class RequestPaginationError(Exception):
def __init__(self, msg, response):
super(RequestPaginationError, self).__init__(u'%s' % msg)
self.message = u'%s' % msg
self.response = response
def __str__(self):
return repr(self.message)
class PaginationLimit(Exception):
def __init__(self, msg, response):
super(PaginationLimit, self).__init__(u'%s' % msg)
self.message = u'%s' % msg
self.response = response
def __str__(self):
return repr(self.message)