/******************************************************************************* *******************************************************************************/ 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 InvalidAssertionConsumerServiceException extends PVP2Exception { public InvalidAssertionConsumerServiceException(int idx) { super("pvp2.00", new Object[]{idx}); this.statusCodeValue = StatusCode.REQUESTER_URI; } /** * */ public InvalidAssertionConsumerServiceException(String wrongURL) { super("pvp2.23", new Object[]{wrongURL}); this.statusCodeValue = StatusCode.REQUESTER_URI; } /** * */ private static final long serialVersionUID = 7861790149343943091L; }