import { AIErrorCode } from "./error-code.type.mjs"; import { AIError, AIErrorOptions } from "./ai-error.mjs"; //#region ../ai/src/errors/workflow-error.d.ts /** * Base class for all workflow-specific failures. Subclasses carry * precise codes; this base catches everything `workflow.execute()` * can produce beyond agent/tool/provider errors. */ declare class WorkflowError extends AIError { constructor(message: string, options?: AIErrorOptions, code?: AIErrorCode); } //#endregion export { WorkflowError }; //# sourceMappingURL=workflow-error.d.mts.map