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

pl.allegro.tech.hermes.common.kafka.KafkaConsumerPoolException Maven / Gradle / Ivy

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

import pl.allegro.tech.hermes.api.ErrorCode;
import pl.allegro.tech.hermes.common.exception.HermesException;

public class KafkaConsumerPoolException extends HermesException {

    public KafkaConsumerPoolException(String message, Throwable t) {
        super(message, t);
    }

    @Override
    public ErrorCode getCode() {
        return ErrorCode.SIMPLE_CONSUMER_POOL_EXCEPTION;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy