UNPKG

@solid/community-server

Version:

Community Solid Server: an open and modular implementation of the Solid specifications

10 lines (9 loc) 395 B
import type { HttpErrorOptions } from './HttpError'; declare const BaseHttpError: import("./HttpError").HttpErrorClass<500>; /** * A generic error message, given when an unexpected condition was encountered and no more specific message is suitable. */ export declare class InternalServerError extends BaseHttpError { constructor(message?: string, options?: HttpErrorOptions); } export {};