org.jcamp.math.DataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcamp-dx Show documentation
Show all versions of jcamp-dx Show documentation
The JCAMP-DX project is the reference implemention of the IUPAC JCAMP-DX spectroscopy data standard.
The newest version!
package org.jcamp.math;
/**
* special exception in data handling.
*
* @author Thomas Weber
*/
public class DataException
extends Exception {
/** for serialization. */
private static final long serialVersionUID = -1506747424253191086L;
/**
* DataException constructor comment.
*/
public DataException() {
super();
}
/**
* DataException constructor comment.
* @param s java.lang.String
*/
public DataException(String s) {
super(s);
}
}