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

decodes.db.DatabaseConnectException Maven / Gradle / Ivy

Go to download

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);
	 }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy