org.jcamp.parser.JCAMPException 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.parser;
/**
* exceptions thrown at JCAMP-DX parsing.
*
* @author Thomas Weber
*/
public class JCAMPException
extends Exception {
/** for serialization. */
private static final long serialVersionUID = -4773819366174671655L;
/**
* JCAMPException constructor comment.
*/
public JCAMPException() {
super();
}
/**
* JCAMPException constructor comment.
* @param s java.lang.String
*/
public JCAMPException(String s) {
super(s);
}
}