io.github.resilience4j.reactor.IllegalPublisherException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resilience4j-reactor Show documentation
Show all versions of resilience4j-reactor Show documentation
Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming
package io.github.resilience4j.reactor;
import org.reactivestreams.Publisher;
public class IllegalPublisherException extends IllegalStateException {
public IllegalPublisherException(Publisher publisher) {
super("Publisher of type <" + publisher.getClass().getSimpleName()
+ "> is not supported by this operator");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy