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

decodes.consumer.DataConsumerException 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$
*
*  $State$
*
*  $Log$
*  Revision 1.1  2008/04/04 18:20:59  cvs
*  Added legacy code to repository
*
*  Revision 1.2  2004/08/24 21:01:35  mjmaloney
*  added javadocs
*
*  Revision 1.1  2001/09/09 17:39:42  mike
*  Created.
*
*/
package decodes.consumer;

import decodes.util.DecodesException;

/**
This is thrown when output problems are encountered by a consumer.
*/
public class DataConsumerException extends DecodesException
{
	/**
	  Constructs new exception.
	  @param msg the message
	*/
	public DataConsumerException(String msg)
	{
		super(msg);
	}

	/**
	  Constructs new exception.
	  @param msg the message
	  @param cause the root cause
	*/
	public DataConsumerException(String msg, Throwable cause)
	{
		super(msg,cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy