Add serviceOrder rest services
[externalapi/nbi.git] / src / main / java / org / onap / nbi / exceptions / ApiExceptionHandler.java
index 1f109cb..1781701 100644 (file)
@@ -18,22 +18,24 @@ public class ApiExceptionHandler {
     @ExceptionHandler(BackendFunctionalException.class)
     @ResponseBody
     public ResponseEntity<ApiError> backendExceptionHandler(final BackendFunctionalException exception) {
-        ApiError apiError = new ApiError(String.valueOf(exception.getHttpStatus().value()), exception.getMessage(), "", "");
+        ApiError apiError =
+                new ApiError(String.valueOf(exception.getHttpStatus().value()), exception.getMessage(), "", "");
         return new ResponseEntity<ApiError>(apiError, exception.getHttpStatus());
     }
 
     @ExceptionHandler(TechnicalException.class)
     @ResponseBody
     public ResponseEntity<ApiError> technicalExceptionHandler(final TechnicalException exception) {
-        ApiError apiError = new ApiError(String.valueOf(exception.getHttpStatus().value()), exception.getMessage(), "", "");
+        ApiError apiError =
+                new ApiError(String.valueOf(exception.getHttpStatus().value()), exception.getMessage(), "", "");
         return new ResponseEntity<ApiError>(apiError, exception.getHttpStatus());
     }
 
     @ExceptionHandler(RestClientException.class)
     @ResponseBody
     public ResponseEntity<ApiError> RestClientExceptionHandler(final RestClientException exception) {
-        ApiError apiError = new ApiError("500", HttpStatus.INTERNAL_SERVER_ERROR.getReasonPhrase(), "Unable to " +
-                "reach ONAP services", "");
+        ApiError apiError = new ApiError("500", HttpStatus.INTERNAL_SERVER_ERROR.getReasonPhrase(),
+                "Unable to " + "reach ONAP services", "");
         return new ResponseEntity<ApiError>(apiError, HttpStatus.INTERNAL_SERVER_ERROR);
     }