import { ApiException } from '@jiaxinjiang/nest-exception';

export class HttpRequestApiException extends ApiException {
  readonly code: number = 200101;
  readonly msg: string = 'http接口调用失败';
}
