decodes.decoder.DecoderException 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$
*
* $State$
*
* $Log$
* Revision 1.1 2008/04/04 18:21:01 cvs
* Added legacy code to repository
*
* Revision 1.2 2004/08/31 16:31:19 mjmaloney
* javadoc
*
* Revision 1.1 2001/05/04 21:16:12 mike
* dev
*
*/
package decodes.decoder;
/**
Base class for all exceptions generated by decoder modules.
*/
public class DecoderException extends decodes.util.DecodesException
{
/**
Construct the exception.
@param msg the message
*/
public DecoderException(String msg)
{
super(msg);
}
}