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

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

The newest version!
package com.infomaximum.database.exception;

public class TableNotFoundException extends SchemaException {

    public TableNotFoundException(String tableName) {
        super("Schema table name=" + tableName + " not found");
    }

    public TableNotFoundException(int tableId) {
        super("Table id=" + tableId + " not found");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy