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

decodes.comp.BadConfigException 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:20:59  cvs
*  Added legacy code to repository
*
*  Revision 1.3  2004/08/11 21:40:56  mjmaloney
*  Improved javadocs
*
*  Revision 1.2  2004/06/24 18:36:04  mjmaloney
*  Preliminary working version.
*
*  Revision 1.1  2004/06/24 14:29:51  mjmaloney
*  Created.
*
*/
/**
* @(#) BadConfigException.java
*/
package decodes.comp;

import decodes.comp.ComputationException;

/**
* Thrown when ComputationProcessor could not initialize because of
* a bad or missing configuration file.
*/
public class BadConfigException extends ComputationException
{
	/**
	  Construct new BadConfigException.
	  @param msg the message
	*/
	public BadConfigException(String msg)
	{
		super(msg);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy