aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/main/java/org/onap/policy/api/main/exception/PolicyApiException.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/main/java/org/onap/policy/api/main/exception/PolicyApiException.java')
-rw-r--r--main/src/main/java/org/onap/policy/api/main/exception/PolicyApiException.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/main/src/main/java/org/onap/policy/api/main/exception/PolicyApiException.java b/main/src/main/java/org/onap/policy/api/main/exception/PolicyApiException.java
index 580ba33d..b5364395 100644
--- a/main/src/main/java/org/onap/policy/api/main/exception/PolicyApiException.java
+++ b/main/src/main/java/org/onap/policy/api/main/exception/PolicyApiException.java
@@ -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.
@@ -20,10 +21,13 @@
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);