/* * @author gs * @date 2020/07/28 11:33 */ /* * @author gs * @date 2020/07/27 17:53 * @modified-user songxiwen * @modified-date 2020/08/12 14:44 * @modified-description move ServerError into common fold */ import { HttpException, HttpStatus } from '@nestjs/common'; export class TowifyError extends HttpException { constructor(response: string | Record, readonly code: number) { super(response, HttpStatus.INTERNAL_SERVER_ERROR); } }