
org.codelibs.elasticsearch.df.DfSystemException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-dataformat Show documentation
Show all versions of elasticsearch-dataformat Show documentation
This plugin provides several response formats.
package org.codelibs.elasticsearch.df;
public class DfSystemException extends RuntimeException {
private static final long serialVersionUID = 1L;
public DfSystemException(final String message) {
super(message);
}
public DfSystemException(final Throwable cause) {
super(cause);
}
public DfSystemException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy