org.jcamp.units.UnitException 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.units;
/**
* exception raised if units are not convertible into each other.
*
* @author Thomas Weber
*/
public class UnitException
extends Exception {
/** for serialization. */
private static final long serialVersionUID = 3848518000407284705L;
/**
* UnitException constructor comment.
*/
public UnitException() {
super();
}
/**
* UnitException constructor comment.
* @param s java.lang.String
*/
public UnitException(String s) {
super(s);
}
}