ucar.nc2.iosp.fysat.UnsupportedDatasetException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netcdf Show documentation
Show all versions of netcdf Show documentation
The NetCDF-Java Library is a Java interface to NetCDF files,
as well as to many other types of scientific data formats.
/**
*
*/
package ucar.nc2.iosp.fysat;
import java.io.IOException;
/**
* @author Hurricane
*
*/
public class UnsupportedDatasetException
extends IOException
{
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Constructs an UnsupportedEncodingException without a detail message.
*/
public UnsupportedDatasetException() {
super();
}
/**
* Constructs an UnsupportedEncodingException with a detail message.
* @param s Describes the reason for the exception.
*/
public UnsupportedDatasetException(String s) {
super(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy