cic-auth-helper/cic_auth_helper/error.py

8 lines
213 B
Python
Raw Normal View History

2022-01-24 20:46:25 +01:00
class NotFoundError(FileNotFoundError):
def __init__(self, code, msg, headers):
super(NotFoundError, self).__init__(msg)
self.code = code
self.msg = msg
self.headers = headers