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

com.dtsx.astra.sdk.db.exception.DatabaseNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package com.dtsx.astra.sdk.db.exception;

/**
 * Exception thrown when accessing a database from name or id, and it is not found.
 */
public class DatabaseNotFoundException extends RuntimeException {

    /**
     * Constructor with dbName
     *
     * @param dbName
     *      db name
     */
    public DatabaseNotFoundException(String dbName) {
        super("Database '" + dbName + "' has not been found.");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy