com.infomaximum.database.exception.IndexAlreadyExistsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdao Show documentation
Show all versions of rdao Show documentation
Library for creating a light cluster
The newest version!
package com.infomaximum.database.exception;
import com.infomaximum.database.schema.BaseIndex;
import com.infomaximum.database.schema.dbstruct.DBIndex;
public class IndexAlreadyExistsException extends SchemaException {
public IndexAlreadyExistsException(T index) {
super("Index already exists, " + index.toString());
}
public IndexAlreadyExistsException(T index) {
super("Index already exists, " + index.toString());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy