decodes.db.DatabaseConnectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
/*
* $Id$
*/
package decodes.db;
/**
Thrown when can't connect to database because of missing or incorrect
connection parameters.
*/
public class DatabaseConnectException extends DatabaseException
{
/**
constructor.
@param msg the message.
*/
public DatabaseConnectException(String msg)
{
super(msg);
}
/**
constructor with cause
@param msg the message.
@param
*/
public DatabaseConnectException(String msg, Throwable ex)
{
super(msg,ex);
}
}