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

org.vertexium.elasticsearch.VertexiumNoMatchingPropertiesException Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package org.vertexium.elasticsearch;

import org.vertexium.VertexiumException;

public class VertexiumNoMatchingPropertiesException extends VertexiumException {
    private String propertyName;

    public VertexiumNoMatchingPropertiesException(String propertyName) {
        super("Could not find matching property name: " + propertyName);
        this.propertyName = propertyName;
    }

    public String getPropertyName() {
        return propertyName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy