org.kairosdb.core.PluginException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kairosdb Show documentation
Show all versions of kairosdb Show documentation
KairosDB is a fast distributed scalable time series abstraction on top of Cassandra.
package org.kairosdb.core;
/**
* Created by bhawkins on 5/19/17.
*/
public class PluginException extends Exception {
private static final long serialVersionUID = 5159086578496853083L;
public PluginException() {
}
public PluginException(final String pluginName, final String message) {
super("Exception in " + pluginName + ": " + message);
}
public PluginException(final String pluginName, final String message, final Throwable cause) {
super("Exception in " + pluginName + ": " + message, cause);
}
}