From 92cdbc5d83547b3c3326a2878f9e58a171ac13b3 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Mon, 2 Jul 2018 18:09:59 +0200 Subject: update attribute builder --- .../eaaf/core/exceptions/AuthnRequestValidatorException.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'eaaf_core/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java') 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 -- cgit v1.2.3