org.codelibs.elasticsearch.sstmpl.ScriptTemplateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-sstmpl Show documentation
Show all versions of elasticsearch-sstmpl Show documentation
This plugin provides Script-based Search Template.
package org.codelibs.elasticsearch.sstmpl;
public class ScriptTemplateException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ScriptTemplateException(final String message, final Throwable cause) {
super(message, cause);
}
public ScriptTemplateException(final String message) {
super(message);
}
}