"use strict"; class NotFoundError extends Error { constructor(args) { super(args); this.code = 404; } } module.exports = NotFoundError;