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