UNPKG

@foxpage/foxpage-node-sdk

Version:

foxpage node sdk

13 lines (12 loc) 435 B
import { FoxpageStatus } from './enum'; import { IFoxpageErrorType } from './interface'; export type NotFoundDSLErrorDetail = { pageId?: string; }; export declare const NotFoundDSLErrorCode = "NOT_FOUND_DSL_EXCEPTION"; export declare class NotFoundDSLError extends Error implements IFoxpageErrorType { code: string; detail: NotFoundDSLErrorDetail; status: FoxpageStatus; constructor(pageId: string, msg: string); }