mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -07:00
parent
617bf37878
commit
c80a678ded
54 changed files with 567 additions and 567 deletions
11
core/synchronousdeluge/exceptions.py
Normal file
11
core/synchronousdeluge/exceptions.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
__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)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue