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

org.elasticsearch.index.analysis.ConfigErrorException Maven / Gradle / Ivy

There is a newer version: 5.2.2
Show newest version
package org.elasticsearch.index.analysis;

/**
 * Created by medcl on 16/8/22.
 */
public class ConfigErrorException extends RuntimeException {
    private final String mesage;

    public ConfigErrorException(String message) {
        this.mesage=message;
    }
    public String getMessage() {
        return this.mesage;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy