@platformos/pos-cli
Version:
Manage your platformOS application
19 lines • 757 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var polyfill_1 = require("./polyfill");
/** An error emitted by Sentry SDKs and related utilities. */
var SentryError = /** @class */ (function (_super) {
tslib_1.__extends(SentryError, _super);
function SentryError(message) {
var _newTarget = this.constructor;
var _this = _super.call(this, message) || this;
_this.message = message;
// tslint:disable:no-unsafe-any
_this.name = _newTarget.prototype.constructor.name;
polyfill_1.setPrototypeOf(_this, _newTarget.prototype);
return _this;
}
return SentryError;
}(Error));
exports.SentryError = SentryError;
//# sourceMappingURL=error.js.map