datatracker/permissions/exceptions.py
2010-11-02 15:33:23 +00:00

3 lines
107 B
Python

class Unauthorized(Exception):
def __init__(self, str):
super(Unauthorized, self).__init__(str)