UNPKG

@telstra/core

Version:
8 lines (7 loc) 258 B
import { ErrorCode } from '../../constants/ErrorConstants.js'; import { ServiceError } from './ServiceError.js'; export class MaxAuthRetryCountReachedError extends ServiceError { constructor() { super(ErrorCode.MaxAuthRetryCountReached); } }