donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
11 lines • 457 B
TypeScript
import { DonobuException } from './DonobuException';
/**
* This exception is thrown when a particular active flow is not found. Unlike
* FlowNotFoundException, this exception will be thrown even if the flow exists but is simply not
* in an active state.
*/
export declare class ActiveFlowNotFoundException extends DonobuException {
readonly flowId: string;
constructor(flowId: string);
}
//# sourceMappingURL=ActiveFlowNotFoundException.d.ts.map