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