This repository has no description
Something went wrong. Try again.
383 B · 10 lines
TypeScript
at main
1234567891011// SPDX-License-Identifier: AGPL-3.0-or-later
import {APIErrorCodes} from '@fluxer/constants/src/ApiErrorCodes';import {InternalServerError} from '@fluxer/errors/src/domains/core/InternalServerError';
export class InvalidWebAuthnAuthenticationCounterError extends InternalServerError { constructor() { super({code: APIErrorCodes.INVALID_WEBAUTHN_AUTHENTICATION_COUNTER}); }}