
org.frekele.elasticsearch.mapping.exceptions.MappingBuilderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-mapping-builder Show documentation
Show all versions of elasticsearch-mapping-builder Show documentation
Elasticsearch Java Mapping Builder.
The newest version!
package org.frekele.elasticsearch.mapping.exceptions;
import java.io.Serializable;
/**
* @author frekele - Leandro Kersting de Freitas
*/
public class MappingBuilderException extends RuntimeException implements Serializable {
private static final long serialVersionUID = 1L;
public MappingBuilderException(String message) {
super(message);
}
public MappingBuilderException(Throwable cause) {
super(cause);
}
public MappingBuilderException(String message, Throwable cause) {
super(message, cause);
}
public MappingBuilderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy