/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.exceptions; /** * @author tlenz * */ public class GUIBuildException extends Exception { private static final long serialVersionUID = -278663750102498205L; /** * @param string */ public GUIBuildException(String msg) { super(msg); } public GUIBuildException(String msg, Throwable e) { super(msg, e); } }