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