mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
12 lines
256 B
Python
12 lines
256 B
Python
|
class FanartError(Exception):
|
||
|
def __str__(self):
|
||
|
return ', '.join(map(str, self.args))
|
||
|
|
||
|
def __repr__(self):
|
||
|
name = self.__class__.__name__
|
||
|
return '%s%r' % (name, self.args)
|
||
|
|
||
|
|
||
|
class ResponseFanartError(FanartError):
|
||
|
pass
|