class not_found_error extends Error { constructor(message) { super(message) this.status_code = 404 } } module.exports = not_found_error