c8osdkjscore
Version:
convertigo's sdk js core
26 lines • 1.23 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var c8oException_1 = require("./c8oException");
var C8oHttpRequestException = (function (_super) {
__extends(C8oHttpRequestException, _super);
function C8oHttpRequestException(message, cause) {
if (cause === void 0) { cause = null; }
var _this = _super.call(this, message, cause) || this;
_this.originalException = cause;
Object.setPrototypeOf(_this, C8oHttpRequestException.prototype);
return _this;
}
return C8oHttpRequestException;
}(c8oException_1.C8oException));
exports.C8oHttpRequestException = C8oHttpRequestException;
//# sourceMappingURL=c8oHttpRequestException.js.map