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

com.alibaba.hologres.kafka.exception.KafkaHoloException Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package com.alibaba.hologres.kafka.exception;

/** KafkaHoloException. */
public class KafkaHoloException extends RuntimeException {

    private static final long serialVersionUID = 4858210651037826401L;

    public KafkaHoloException() {
        super();
    }

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

    public KafkaHoloException(Throwable cause) {
        super(cause);
    }

    public KafkaHoloException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy