
org.jcamp.parser.IErrorHandler 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.
package org.jcamp.parser;
/**
* error handling for JCAMP parsing.
* @author Thomas Weber
*/
public interface IErrorHandler {
/**
* handle error condition.
* @param msg java.lang.String
*/
void error(String msg) throws JCAMPException;
/**
* handle fatal error
*
* @param msg java.lang.String
*/
void fatal(String msg) throws JCAMPException;
/**
* handle warning message.
*
* @param msg java.lang.String
*/
void warn(String msg) throws JCAMPException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy