@gibraltarsoftware/loupe-typescript
Version:
Loupe Agent for Web clients
16 lines • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Exception = void 0;
var Exception = (function () {
function Exception(cause, column, line, message, stackTrace, url) {
this.cause = cause;
this.column = column;
this.line = line;
this.message = message;
this.stackTrace = stackTrace;
this.url = url;
}
return Exception;
}());
exports.Exception = Exception;
//# sourceMappingURL=exception.js.map