Package akka.pattern
Class CircuitBreakerOpenException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- akka.AkkaException
-
- akka.pattern.CircuitBreakerOpenException
-
- All Implemented Interfaces:
java.io.Serializable
,scala.util.control.NoStackTrace
public class CircuitBreakerOpenException extends AkkaException implements scala.util.control.NoStackTrace
Exception thrown when Circuit Breaker is open.param: remainingDuration Stores remaining time before attempting a reset. Zero duration means the breaker is currently in half-open state. param: message Defaults to "Circuit Breaker is open; calls are failing fast"
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CircuitBreakerOpenException(scala.concurrent.duration.FiniteDuration remainingDuration, java.lang.String message)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.lang.String
$lessinit$greater$default$2()
scala.concurrent.duration.FiniteDuration
remainingDuration()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-