UNPKG

create-hokage-js-app

Version:

🔥 Best CLI tool to create a MERN stack template. Quick, clean, and customizable.

11 lines (10 loc) • 308 B
export class AppError extends Error { statusCode; isOperational; constructor(message, statusCode = 500, isOperational = true) { super(message); this.statusCode = statusCode this.isOperational = isOperational Error.captureStackTrace(this, this.constructor) } }