UNPKG

@telstra/core

Version:
8 lines (7 loc) 231 B
import { ErrorCode } from '../../constants/ErrorConstants.js'; import { AuthError } from './AuthError.js'; export class AuthenticationFailedError extends AuthError { constructor() { super(ErrorCode.AuthFailed); } }