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

org.jcamp.parser.IErrorHandler Maven / Gradle / Ivy

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