13 lines
341 B
JavaScript
13 lines
341 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
|