Merge "Add tests to improve code-coverage stats in Sonar"
[portal/ric-dashboard.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / controller / CustomResponseEntityExceptionHandler.java
index 2f08806..4c800d9 100644 (file)
@@ -93,7 +93,8 @@ public class CustomResponseEntityExceptionHandler extends ResponseEntityExceptio
        }
 
        /**
-        * Logs a warning if an invalid RIC instance key is used.
+        * Logs the error and generates a response when a REST controller method takes
+        * an UnknownInstanceException, an invalid RIC instance key was used.
         * 
         * @param ex
         *                    The exception
@@ -107,9 +108,10 @@ public class CustomResponseEntityExceptionHandler extends ResponseEntityExceptio
                                ex.toString());
                return ResponseEntity.badRequest().body(getShortExceptionMessage(ex));
        }
-       
+
        /**
-        * Logs a warning if a StatsManagerException is thrown.
+        * Logs the error and generates a response when a REST controller method takes
+        * an StatsManagerException.
         * 
         * @param ex
         *                    The exception
@@ -119,8 +121,7 @@ public class CustomResponseEntityExceptionHandler extends ResponseEntityExceptio
         */
        @ExceptionHandler({ StatsManagerException.class })
        public final ResponseEntity<String> handleStatsManagerException(Exception ex, WebRequest request) {
-               log.warn("handleStatsManagerException: request {}, exception {}", request.getDescription(false),
-                               ex.toString());
+               log.warn("handleStatsManagerException: request {}, exception {}", request.getDescription(false), ex.toString());
                return ResponseEntity.badRequest().body(getShortExceptionMessage(ex));
        }