@studyportals/sp-hs-misc
Version:
Miscellaneous code used in HouseStark's projects
17 lines • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FailedAuthenticationResult = void 0;
/**
* @deprecated Use @studyportals/client-internal-platform-sso
*/
class FailedAuthenticationResult {
constructor(reason) {
this.__i_failed_authentication_result__ = true;
this._reason = reason;
}
get reason() {
return this._reason;
}
}
exports.FailedAuthenticationResult = FailedAuthenticationResult;
//# sourceMappingURL=failed-authentication-result.class.js.map