@solid/community-server
Version:
Community Solid Server: an open and modular implementation of the Solid specifications
10 lines (9 loc) • 344 B
TypeScript
import type { HttpErrorOptions } from './HttpError';
declare const BaseHttpError: import("./HttpError").HttpErrorClass<404>;
/**
* An error thrown when no data was found for the requested identifier.
*/
export declare class NotFoundHttpError extends BaseHttpError {
constructor(message?: string, options?: HttpErrorOptions);
}
export {};