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

com.github.ddth.kafka.KafkaException Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.github.ddth.kafka;

/**
 * Throwns to indicate there has been an exception while interacting with Kafka.
 * 
 * @author Thanh Ba Nguyen 
 * @since 1.0.0
 */
public class KafkaException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public KafkaException() {
    }

    public KafkaException(String message) {
        super(message);
    }

    public KafkaException(Throwable throwable) {
        super(throwable);
    }

    public KafkaException(String message, Throwable throwable) {
        super(message, throwable);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy