@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
13 lines • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthenticationError = void 0;
class AuthenticationError extends Error {
constructor(message, internalError) {
super(message);
this.name = "AuthenticationError";
Object.setPrototypeOf(this, new.target.prototype);
this.internalError = internalError;
}
}
exports.AuthenticationError = AuthenticationError;
//# sourceMappingURL=authentication-error.js.map