@solid/community-server
Version:
Community Solid Server: an open and modular implementation of the Solid specifications
10 lines (9 loc) • 383 B
TypeScript
import type { HttpErrorOptions } from './HttpError';
declare const BaseHttpError: import("./HttpError").HttpErrorClass<422>;
/**
* An error thrown when the server understands the content-type but can't process the instructions.
*/
export declare class UnprocessableEntityHttpError extends BaseHttpError {
constructor(message?: string, options?: HttpErrorOptions);
}
export {};