@foxpage/foxpage-node-sdk
Version:
foxpage node sdk
13 lines (12 loc) • 416 B
TypeScript
import { FoxpageStatus } from './enum';
import { IFoxpageErrorType } from './interface';
export type NotFoundAppErrorDetail = {
appId?: string;
};
export declare const NotFoundAppCode = "NOT_FOUND_APP_EXCEPTION";
export declare class NotFoundAppError extends Error implements IFoxpageErrorType {
code: string;
detail: NotFoundAppErrorDetail;
status: FoxpageStatus;
constructor(appId?: string);
}