/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.modules.pvp2.exception; import org.opensaml.saml2.core.StatusCode; import at.gv.egiz.eaaf.core.exceptions.EAAFException; public abstract class PVP2Exception extends EAAFException { //TODO:!!!!! protected String statusCodeValue = StatusCode.RESPONDER_URI; protected String statusMessageValue = null; public PVP2Exception(String messageId, Object[] parameters, Throwable wrapped) { super(messageId, parameters, wrapped.getMessage(), wrapped); this.statusMessageValue = this.getMessage(); } public PVP2Exception(String messageId, Object[] parameters) { super(messageId, parameters, messageId); this.statusMessageValue = this.getMessage(); } public String getStatusCodeValue() { return (this.statusCodeValue); } public String getStatusMessageValue() { return (this.statusMessageValue); } /** * */ private static final long serialVersionUID = 7669537952484421069L; }