/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.modules.pvp2.idp.exception; import org.opensaml.saml2.core.StatusCode; import at.gv.egiz.eaaf.modules.pvp2.exception.PVP2Exception; public class ResponderErrorException extends PVP2Exception { /** * */ private static final long serialVersionUID = -425416760138285446L; public ResponderErrorException(String messageId, Object[] parameters, Throwable wrapped) { super(messageId, parameters, wrapped); this.statusCodeValue = StatusCode.RESPONDER_URI; } public ResponderErrorException(String messageId, Object[] parameters) { super(messageId, parameters); this.statusCodeValue = StatusCode.RESPONDER_URI; } }