donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
14 lines • 604 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FlowIdCollisionException = void 0;
const DonobuException_1 = require("./DonobuException");
class FlowIdCollisionException extends DonobuException_1.DonobuException {
constructor(message) {
super(message, undefined, 409);
}
static forId(flowId) {
return new FlowIdCollisionException(`A flow with ID '${flowId}' already exists. Client-supplied flow IDs must be unique.`);
}
}
exports.FlowIdCollisionException = FlowIdCollisionException;
//# sourceMappingURL=FlowIdCollisionException.js.map