/** * @author WMXPY * @namespace Error_SavingTarget * @description Check Failed */ import { SavingTargetError } from "./saving-target-error"; export declare class SavingTargetCheckFailedError extends SavingTargetError { static originNotFound(originName: string): SavingTargetCheckFailedError; static collectionNotFound(collectionIdentifier: string): SavingTargetCheckFailedError; static pageNotFound(pageName: string): SavingTargetCheckFailedError; static scriptNotFound(scriptName: string): SavingTargetCheckFailedError; protected constructor(message: string, reason?: any); }