Fixed most of the Checkstyle warnings. 11/50911/1
authorvamshi.nemalikonda <vn00480215@techmahindra.com>
Thu, 7 Jun 2018 11:17:07 +0000 (16:47 +0530)
committervamshi.nemalikonda <vn00480215@techmahindra.com>
Thu, 7 Jun 2018 11:41:41 +0000 (17:11 +0530)
Change-Id: I80b05663e81648058f84aff5d5cda2deaa2d87c9
Issue-ID: POLICY-881
Signed-off-by: vamshi.nemalikonda <vn00480215@techmahindra.com>
utils-test/src/main/java/org/onap/policy/common/utils/test/ConstructionError.java

index 2cab0f9..0ae4fb9 100644 (file)
@@ -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);
        }