File size: 189 Bytes
aec3094
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { ForbiddenError } from './forbidden.error';

export class InvalidMfaCodeError extends ForbiddenError {
	constructor(hint?: string) {
		super('Invalid two-factor code.', hint);
	}
}