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

org.jcamp.units.UnitException Maven / Gradle / Ivy

Go to download

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy