UNPKG

203 BTypeScriptView Raw
1import { HttpError } from './HttpError';
2/**
3 * Exception for 422 HTTP error.
4 */
5export declare class UnprocessableEntityError extends HttpError {
6 name: string;
7 constructor(message?: string);
8}