4 lines
104 B
Python
4 lines
104 B
Python
|
class WorblehatException(Exception):
|
||
|
def __init__(self, msg):
|
||
|
Exception.__init__(self, msg)
|