@usekana/client-kana-js
Version:
Kana frontend JavaScript client
59 lines • 2.48 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.FeatureNotFoundError = exports.NetworkError = exports.AuthenticationError = exports.EmptyArgumentError = void 0;
var EmptyArgumentError = /** @class */ (function (_super) {
__extends(EmptyArgumentError, _super);
function EmptyArgumentError(argName) {
var _this = _super.call(this, "\"".concat(argName, "\" cannot be empty")) || this;
_this.name = _this.constructor.name;
return _this;
}
return EmptyArgumentError;
}(Error));
exports.EmptyArgumentError = EmptyArgumentError;
var AuthenticationError = /** @class */ (function (_super) {
__extends(AuthenticationError, _super);
function AuthenticationError(message) {
var _this = _super.call(this, message) || this;
_this.name = _this.constructor.name;
return _this;
}
return AuthenticationError;
}(Error));
exports.AuthenticationError = AuthenticationError;
var NetworkError = /** @class */ (function (_super) {
__extends(NetworkError, _super);
function NetworkError(message) {
var _this = _super.call(this, message) || this;
_this.name = _this.constructor.name;
return _this;
}
return NetworkError;
}(Error));
exports.NetworkError = NetworkError;
var FeatureNotFoundError = /** @class */ (function (_super) {
__extends(FeatureNotFoundError, _super);
function FeatureNotFoundError(message) {
var _this = _super.call(this, message) || this;
_this.name = _this.constructor.name;
return _this;
}
return FeatureNotFoundError;
}(Error));
exports.FeatureNotFoundError = FeatureNotFoundError;
//# sourceMappingURL=errors.js.map