UNPKG

@telstra/core

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