cic-auth-helper/cic_auth_helper/error.py

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