CallNotPermittedException

class CallNotPermittedException(message: String = "A call to a protected operation by a circuit breaker was not permitted.") : IllegalStateException(source)

Signals that a call to a protected operation was not permitted by the circuit breaker either because it was in the Closed state and the failure rate exceeded the threshold; or because it was in the HalfOpen state and the number of permitted calls was exceeded.

Constructors

Link copied to clipboard
constructor(message: String = "A call to a protected operation by a circuit breaker was not permitted.")

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?