3 lines
107 B
Python
3 lines
107 B
Python
class Unauthorized(Exception):
|
|
def __init__(self, str):
|
|
super(Unauthorized, self).__init__(str) |