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

com.infomaximum.database.exception.IndexAlreadyExistsException Maven / Gradle / Ivy

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