An Error base-class that also provides some additional context.
All first-party error handlers in Extollo can render the context as part of the display of the error (e.g. in the console, in the HTML response, &c.)
function myFunc(arg1, arg2) { // ...do something... throw new ErrorWithContext('Something went wrong!', { arg1, arg2 }) }
Optional override for formatting stack traces
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Create .stack property on a target object
extollo (v. latin) - to lift up, to elevate
Extollo is a free & libre application framework in TypeScript.
An Error base-class that also provides some additional context.
All first-party error handlers in Extollo can render the context as part of the display of the error (e.g. in the console, in the HTML response, &c.)