org.tarantool.schema.TarantoolIndexNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector Show documentation
Show all versions of connector Show documentation
Tarantool client for java
The newest version!
package org.tarantool.schema;
public class TarantoolIndexNotFoundException extends TarantoolSchemaException {
private final String indexName;
public TarantoolIndexNotFoundException(String targetSpace, String indexName) {
super(targetSpace);
this.indexName = indexName;
}
public String getIndexName() {
return indexName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy