decodes.tsdb.alarm.mail.MailerException 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$
*
* Copyright 2017 Cove Software, LLC. All rights reserved.
*
* $Log$
* Revision 1.2 2017/05/17 20:37:12 mmaloney
* First working version.
*
*/
package decodes.tsdb.alarm.mail;
@SuppressWarnings("serial")
public class MailerException extends Exception
{
public MailerException(String message)
{
super(message);
}
}