lrgs.common.ArchiveUnavailableException 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!
package lrgs.common;
/**
Throws when attempt is made to access an archive that is not available.
*/
public class ArchiveUnavailableException extends ArchiveException
{
/**
* Constructor.
* @param msg the error message
*/
public ArchiveUnavailableException(String msg, int errorCode)
{
super(msg, errorCode, true);
}
}