summaryrefslogtreecommitdiff
path: root/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2018-07-02 18:09:59 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2018-07-02 18:09:59 +0200
commit92cdbc5d83547b3c3326a2878f9e58a171ac13b3 (patch)
tree942ffb37c81773543f8df35080976d8f7643b4bd /eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
parentbee5dd259a4438d45ecd1bcc26dfba12875236d6 (diff)
downloadEAAF-Components-92cdbc5d83547b3c3326a2878f9e58a171ac13b3.tar.gz
EAAF-Components-92cdbc5d83547b3c3326a2878f9e58a171ac13b3.tar.bz2
EAAF-Components-92cdbc5d83547b3c3326a2878f9e58a171ac13b3.zip
update attribute builder
Diffstat (limited to 'eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java')
-rw-r--r--eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
index c416b8e0..9465f472 100644
--- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
+++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
@@ -27,11 +27,22 @@ public class AuthnRequestValidatorException extends EAAFProtocolException {
}
+ public AuthnRequestValidatorException(String internalMsgId, Object[] params, String msg, Throwable e) {
+ super(internalMsgId, params, msg, e);
+
+ }
+
public AuthnRequestValidatorException(String internalMsgId, Object[] params, String msg, IRequest errorRequest) {
super(internalMsgId, params, msg);
this.errorRequest = errorRequest;
}
+
+ public AuthnRequestValidatorException(String internalMsgId, Object[] params, String msg, IRequest errorRequest, Throwable e) {
+ super(internalMsgId, params, msg, e);
+ this.errorRequest = errorRequest;
+
+ }
/**
* @return the errorRequest