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

io.bigdime.libs.kafka.exceptions.KafkaReaderException Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
/**
 * Copyright (C) 2015 Stubhub.
 */
package io.bigdime.libs.kafka.exceptions;

/**
 * 
 * @author mnamburi
 *
 */
public class KafkaReaderException extends Exception {
	private static final long serialVersionUID = 1L;
	
	public KafkaReaderException(String message) {
		super(message);
	}
	public KafkaReaderException(String message, Throwable throwable) {
		super(message, throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy