aboutsummaryrefslogtreecommitdiffstats
path: root/utils-test
diff options
context:
space:
mode:
authorvamshi.nemalikonda <vn00480215@techmahindra.com>2018-06-07 16:47:07 +0530
committervamshi.nemalikonda <vn00480215@techmahindra.com>2018-06-07 17:11:41 +0530
commit343f14900b5977fe6804c9a4f8cd42e6c32b29f1 (patch)
tree68d4cced76ddc976c6b7c2c7432c3f91329a89c1 /utils-test
parent6f69d79828fdb282803089c1c0722463b9a59a5b (diff)
Fixed most of the Checkstyle warnings.
Change-Id: I80b05663e81648058f84aff5d5cda2deaa2d87c9 Issue-ID: POLICY-881 Signed-off-by: vamshi.nemalikonda <vn00480215@techmahindra.com>
Diffstat (limited to 'utils-test')
-rw-r--r--utils-test/src/main/java/org/onap/policy/common/utils/test/ConstructionError.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/utils-test/src/main/java/org/onap/policy/common/utils/test/ConstructionError.java b/utils-test/src/main/java/org/onap/policy/common/utils/test/ConstructionError.java
index 2cab0f90..0ae4fb97 100644
--- a/utils-test/src/main/java/org/onap/policy/common/utils/test/ConstructionError.java
+++ b/utils-test/src/main/java/org/onap/policy/common/utils/test/ConstructionError.java
@@ -1,21 +1,21 @@
/*
- * ============LICENSE_START=======================================================
+ * ============LICENSE_START====================================================
* Common Utils-Test
- * ================================================================================
+ * =============================================================================
* Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
+ * =============================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
- * ============LICENSE_END=========================================================
+ * ============LICENSE_END======================================================
*/
package org.onap.policy.common.utils.test;
@@ -27,31 +27,31 @@ public class ConstructionError extends AssertionError {
private static final long serialVersionUID = 1L;
/**
- *
+ *
*/
public ConstructionError() {
super();
}
/**
- * @param message
+ * @param message denotes the error message
*/
- public ConstructionError(String message) {
+ public ConstructionError(final String message) {
super(message);
}
/**
- * @param cause
+ * @param cause denotes the cause of the error
*/
- public ConstructionError(Throwable cause) {
+ public ConstructionError(final Throwable cause) {
super(cause);
}
/**
- * @param message
- * @param cause
+ * @param message denotes the error message
+ * @param cause denotes the cause of the error
*/
- public ConstructionError(String message, Throwable cause) {
+ public ConstructionError(final String message, final Throwable cause) {
super(message, cause);
}