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

org.jcamp.parser.JCAMPException 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.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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy