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

org.tarantool.schema.TarantoolSchemaException Maven / Gradle / Ivy

The newest version!
package org.tarantool.schema;

public class TarantoolSchemaException extends RuntimeException {

    private final String schemaName;

    public TarantoolSchemaException(String schemaName) {
        this.schemaName = schemaName;
    }

    public String getSchemaName() {
        return schemaName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy