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

pl.allegro.tech.hermes.common.exception.BrokerNotFoundForPartitionException Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package pl.allegro.tech.hermes.common.exception;

@SuppressWarnings("serial")
public class BrokerNotFoundForPartitionException extends InternalProcessingException {

    public BrokerNotFoundForPartitionException(String topic, int partition, Throwable cause) {
        super(String.format("Broker not found for topic %s and partition %d", topic, partition), cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy