UNPKG

express-basic-starter

Version:

CLI to set up a basic Express project with MVC structure, Swagger documentation, and support for ES Modules/CommonJS

11 lines (9 loc) 251 B
class MyError extends Error { constructor(message, statusCode) { super(message); this.name = this.constructor.name; this.statusCode = statusCode || 500; Error.captureStackTrace(this, this.constructor); } } export default MyError;