UNPKG

claude-flow

Version:

Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)

11 lines 378 B
export class BrokenCircuitError extends Error { /** * Exception thrown from {@link CircuitBreakerPolicy.execute} when the * circuit breaker is open. */ constructor(message = 'Execution prevented because the circuit breaker is open') { super(message); this.isBrokenCircuitError = true; } } //# sourceMappingURL=BrokenCircuitError.js.map