com.github.ddth.kafka.KafkaException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddth-kafka Show documentation
Show all versions of ddth-kafka Show documentation
DDTH's Kafka Libraries and Utilities
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