Files
nest/lib/common/exceptions/unprocessable-entity.exception.d.ts
2018-03-27 13:26:50 +02:00

5 lines
190 B
TypeScript

import { HttpException } from './http.exception';
export declare class UnprocessableEntityException extends HttpException {
constructor(message?: string | object | any, error?: string);
}