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

ilex.util.AuthException 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$
*
*  $Log$
*  Revision 1.1  2008/04/04 18:21:09  cvs
*  Added legacy code to repository
*
*  Revision 1.1  2005/07/08 18:40:47  mjmaloney
*  Added AuthException -- do not use IllegalArgumentException.
*
*/
package ilex.util;

/**
* This exception is used for various types of authentication errors.
*/
public class AuthException extends Exception
{
	/**
	* Constructor
	* @param msg the message
	*/
	public AuthException( String msg )
	{
		super(msg);
	}

	/**
	 * Constructor with cause
	 * @param msg the message
	 * @param cause root cause
	 */
	public AuthException(String msg, Throwable cause)
	{
		super(msg,cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy