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

org.lumongo.server.exceptions.IndexDoesNotExist Maven / Gradle / Ivy

There is a newer version: 0.52
Show newest version
package org.lumongo.server.exceptions;

import java.io.IOException;

public class IndexDoesNotExist extends IOException {

	private static final long serialVersionUID = 1L;
	private String indexName;

	public IndexDoesNotExist(String indexName) {
		super("Index <" + indexName + "> does not exist");
		this.indexName = indexName;
	}

	public String getIndexName() {
		return indexName;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy