UNPKG

create-expressapi-boilerplate

Version:
13 lines (10 loc) 323 B
class AppError extends Error { constructor(message, statusCode) { super(message); this.statusCode = statusCode; this.status = `${statusCode}`.startsWith("4") ? "error" : "fail"; this.isOperational = true; Error.captureStackTrace(this, this.constructor); } } module.exports = AppError;