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

io.github.resilience4j.reactor.IllegalPublisherException Maven / Gradle / Ivy

Go to download

Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming

There is a newer version: 2.2.0
Show newest version
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