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