aec3094
1
2
3
4
5
6
7
8
import { ForbiddenError } from './forbidden.error'; export class InvalidMfaRecoveryCodeError extends ForbiddenError { constructor(hint?: string) { super('Invalid MFA recovery code', hint); } }