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

io.zulia.server.exceptions.IndexDoesNotExist Maven / Gradle / Ivy

There is a newer version: 1.6.4
Show newest version
package io.zulia.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 - 2025 Weber Informatics LLC | Privacy Policy