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

io.quarkiverse.reactive.messaging.nats.jetstream.client.ConsumerNotFoundException Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkiverse.reactive.messaging.nats.jetstream.client;

public class ConsumerNotFoundException extends RuntimeException {

    public ConsumerNotFoundException(final String stream, final String consumerName) {
        super(String.format("Consumer with name = %S not found in stream = %s", consumerName, stream));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy