Java 17 / Spring 6 / Spring Boot 3 Upgrade
[policy/api.git] / main / src / main / java / org / onap / policy / api / main / exception / PolicyApiException.java
index 580ba33..b536439 100644 (file)
@@ -1,6 +1,7 @@
 /*-
  * ============LICENSE_START=======================================================
- *  Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
+ * Modifications Copyright (C) 2023 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 package org.onap.policy.api.main.exception;
 
+import java.io.Serial;
+
 /**
  * This exception will be called if an error occurs in policy api external service.
  */
 public class PolicyApiException extends Exception {
+    @Serial
     private static final long serialVersionUID = -8507246953751956974L;
 
     /**
@@ -48,7 +52,7 @@ public class PolicyApiException extends Exception {
      * Instantiates a new policy api exception with a message and a caused by exception.
      *
      * @param message the message
-     * @param exp the exception that caused this exception to be thrown
+     * @param exp     the exception that caused this exception to be thrown
      */
     public PolicyApiException(final String message, final Exception exp) {
         super(message, exp);