Files
2025-03-07 19:22:02 +01:00

13 lines
329 B
JavaScript

"use strict";
/**
* Exception details of the exception in a chain.
*/
var ExceptionDetails = (function () {
function ExceptionDetails() {
this.hasFullStack = true;
this.parsedStack = [];
}
return ExceptionDetails;
}());
module.exports = ExceptionDetails;
//# sourceMappingURL=ExceptionDetails.js.map