dev
class UrlNotFound extends Error { constructor(status, message) { super(message); this.status = status; } } module.exports = UrlNotFound;