io.deephaven.kafka.ingest.KafkaIngesterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-extensions-kafka Show documentation
Show all versions of deephaven-extensions-kafka Show documentation
Kafka: Integrating Engine tables with Kafka
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.kafka.ingest;
import io.deephaven.UncheckedDeephavenException;
/**
* This exception is thrown when there is a failure to consume a Kafka record during Kafka to Deephaven ingestion.
*/
public class KafkaIngesterException extends UncheckedDeephavenException {
/**
* Constructs a new KafkaIngesterException with the specified reason.
*
* @param reason the exception detail message
* @param cause the exception cause
*/
public KafkaIngesterException(String reason, Throwable cause) {
super(reason, cause);
}
/**
* Constructs a new KafkaIngesterException with the specified reason.
*
* @param reason the exception detail message
*/
public KafkaIngesterException(String reason) {
super(reason);
}
}