![JAR search and dependency download from the Maven repository](/logo.png)
com.creativewidgetworks.goldparser.engine.ParserException Maven / Gradle / Ivy
package com.creativewidgetworks.goldparser.engine;
import com.creativewidgetworks.goldparser.util.FormatHelper;
/**
* ParseException
*
* This class implements a GOLD Parser specific exception.
*
* Dependencies: None
*
* @author Devin Cook (http://www.DevinCook.com/GOLDParser)
* @author Ralph Iden (http://www.creativewidgetworks.com), port to Java
* @version 5.0.0
*/
public class ParserException extends RuntimeException {
public ParserException() {
super();
}
public ParserException(Throwable throwable) {
super(throwable);
}
public ParserException(String msg) {
super(FormatHelper.formatMessage("messages", msg));
}
public ParserException(String msg, Throwable throwable) {
super(FormatHelper.formatMessage("messages", msg), throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy