export class AppError extends Error { statusCode; constructor(message, statusCode, stack = '') { super(message); this.statusCode = statusCode; if (stack) { this.stack = stack; } else { Error.captureStackTrace(this, this.constructor); } } }