All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.tinkoff.kora.resilient.circuitbreaker.CallNotPermittedException Maven / Gradle / Ivy

The newest version!
package ru.tinkoff.kora.resilient.circuitbreaker;

import ru.tinkoff.kora.resilient.ResilientException;

public final class CallNotPermittedException extends ResilientException {

    public CallNotPermittedException(CircuitBreaker.State state, String name) {
        super(name, "Call Is Not Permitted due to CircuitBreaker '" + name + "' been in " + state + " state");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy