package at.gv.egovernment.moa.id; /** * Exception thrown while building an XML or HTML structure. * * @author Paul Ivancsics * @version $Id$ */ public class BuildException extends MOAIDException { /** * Constructor for BuildException. * @param messageId * @param parameters */ public BuildException(String messageId, Object[] parameters) { super(messageId, parameters); } /** * Constructor for BuildException. * @param messageId * @param parameters * @param wrapped */ public BuildException( String messageId, Object[] parameters, Throwable wrapped) { super(messageId, parameters, wrapped); } }