UNPKG

@clerk/shared

Version:

Internal package utils used by the Clerk SDKs

16 lines (14 loc) 435 B
const require_clerkRuntimeError = require('./clerkRuntimeError.js'); //#region src/errors/webAuthNError.ts var ClerkWebAuthnError = class extends require_clerkRuntimeError.ClerkRuntimeError { /** * A unique code identifying the error, can be used for localization. */ code; constructor(message, options) { super(message, options); this.code = options.code; } }; //#endregion exports.ClerkWebAuthnError = ClerkWebAuthnError;