UNPKG

@foxpage/foxpage-node-sdk

Version:

foxpage node sdk

12 lines (11 loc) 366 B
import { FoxpageStatus } from './enum'; import { IFoxpageErrorType } from './interface'; export type NotFoundAppByPathErrorDetail = { path?: string; }; export declare class NotFoundAppByPathError extends Error implements IFoxpageErrorType { code: string; detail: NotFoundAppByPathErrorDetail; status: FoxpageStatus; constructor(path?: string); }