UNPKG

@practica/create-node-app

Version:

Create Node.js app that is packed with best practices AND strive for simplicity

12 lines (11 loc) 237 B
export class AppError extends Error { constructor( public name: string, public message: string, public HTTPStatus: number = 500, public isCatastrophic = false, public cause?: unknown ) { super(message); } }