UNPKG

neura-express-app

Version:

Basic express application starter with some common utilities.

14 lines (13 loc) 396 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NeuraAppError = void 0; class NeuraAppError extends Error { constructor(name, message, isTrusted = true, cause) { super(message); this.name = name; this.message = message; this.isTrusted = isTrusted; this.cause = cause; } } exports.NeuraAppError = NeuraAppError;