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