ApplicationState
Introduction
Properties
Property
Type
Description
Methods
Method
Return Type
Description
Example Usage
const error = new ErrorEnhanced([
new ErrorAnalysisEnhancer()
]);
// Setting properties
error.setOriginalError(new Error('Something went wrong'));
// Accessing properties
console.log(error.originalError); // Original Error object
console.log(error.parsedStack); // Parsed stack frames