UNPKG

@tomei/product

Version:

NestJS package for product module

13 lines (11 loc) 306 B
import { BadRequestException, HttpException } from '@nestjs/common'; export function throwException(err) { if (err.response || err instanceof BadRequestException) { throw err; } else { throw new HttpException( 'Something went wrong. Please see application log.', 500, ); } }