mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-14 01:02:55 -07:00
11 lines
301 B
Python
11 lines
301 B
Python
__all__ = ["DelugeRPCError"]
|
|
|
|
class DelugeRPCError(Exception):
|
|
def __init__(self, name, msg, traceback):
|
|
self.name = name
|
|
self.msg = msg
|
|
self.traceback = traceback
|
|
|
|
def __str__(self):
|
|
return "{0}: {1}: {2}".format(self.__class__.__name__, self.name, self.msg)
|
|
|