cic-auth-helper/cic_auth_helper/error.py
2022-01-24 19:46:25 +00:00

8 lines
213 B
Python

class NotFoundError(FileNotFoundError):
def __init__(self, code, msg, headers):
super(NotFoundError, self).__init__(msg)
self.code = code
self.msg = msg
self.headers = headers