/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.exceptions; public class EAAFParserException extends EAAFException { /** * */ private static final long serialVersionUID = 1L; public EAAFParserException(String errorId, Object[] params, String msg) { super(errorId, params, msg); } public EAAFParserException(String errorId, Object[] objects, String message, Throwable ex) { super(errorId, objects, message, ex); } }