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

ucar.nc2.iosp.fysat.UnsupportedDatasetException Maven / Gradle / Ivy

Go to download

The NetCDF-Java Library is a Java interface to NetCDF files, as well as to many other types of scientific data formats.

There is a newer version: 4.3.22
Show newest version
/**
 * 
 */
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