summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
diff options
context:
space:
mode:
authorThomas <thomas.lenz@egiz.gv.at>2019-12-05 09:52:48 +0100
committerThomas <thomas.lenz@egiz.gv.at>2019-12-05 09:52:48 +0100
commit3fada6cef21c9b16467177d866df778203b51b4d (patch)
tree8fe8ed37b6ee9fe35a1e035ceba6c68808328415 /eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
parent95b21a826e5d81fdeabcf4673a9e87047edaec9d (diff)
downloadEAAF-Components-3fada6cef21c9b16467177d866df778203b51b4d.tar.gz
EAAF-Components-3fada6cef21c9b16467177d866df778203b51b4d.tar.bz2
EAAF-Components-3fada6cef21c9b16467177d866df778203b51b4d.zip
some code code-style modifications
active code-quality checks!
Diffstat (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java23
1 files changed, 9 insertions, 14 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
index 32ad97b7..b30363fa 100644
--- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/exceptions/AuthnRequestValidatorException.java
@@ -39,8 +39,7 @@ public class AuthnRequestValidatorException extends EaafProtocolException {
}
- public AuthnRequestValidatorException(final String internalMsgId, final Object[] params,
- final Throwable e) {
+ public AuthnRequestValidatorException(final String internalMsgId, final Object[] params, final Throwable e) {
super(internalMsgId, params, e);
}
@@ -49,8 +48,8 @@ public class AuthnRequestValidatorException extends EaafProtocolException {
* Protocol validation error.
*
* @param internalMsgId Internal error-code
- * @param params Message parameters
- * @param errorRequest Pending-Request that generates the error
+ * @param params Message parameters
+ * @param errorRequest Pending-Request that generates the error
*/
public AuthnRequestValidatorException(final String internalMsgId, final Object[] params,
final IRequest errorRequest) {
@@ -60,15 +59,15 @@ public class AuthnRequestValidatorException extends EaafProtocolException {
}
/**
- * Protocol validation error.
+ * Protocol validation error.
*
* @param internalMsgId Internal error-code
- * @param params Message parameters
- * @param errorRequest Pending-Request that generates the error
- * @param e error
+ * @param params Message parameters
+ * @param errorRequest Pending-Request that generates the error
+ * @param e error
*/
- public AuthnRequestValidatorException(final String internalMsgId, final Object[] params,
- final IRequest errorRequest, final Throwable e) {
+ public AuthnRequestValidatorException(final String internalMsgId, final Object[] params, final IRequest errorRequest,
+ final Throwable e) {
super(internalMsgId, params, e);
this.errorRequest = errorRequest;
@@ -91,8 +90,4 @@ public class AuthnRequestValidatorException extends EaafProtocolException {
this.statusCodeValue = statusCodeValue;
}
-
-
-
-
}