Java 17 / Spring 6 / Spring Boot 3 Upgrade
[policy/api.git] / main / src / main / java / org / onap / policy / api / main / exception / PolicyApiException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
4  * Modifications Copyright (C) 2023 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.api.main.exception;
23
24 import java.io.Serial;
25
26 /**
27  * This exception will be called if an error occurs in policy api external service.
28  */
29 public class PolicyApiException extends Exception {
30     @Serial
31     private static final long serialVersionUID = -8507246953751956974L;
32
33     /**
34      * Instantiates a new policy api exception with a message.
35      *
36      * @param message the message
37      */
38     public PolicyApiException(final String message) {
39         super(message);
40     }
41
42     /**
43      * Instantiates a new policy api exception with a caused by exception.
44      *
45      * @param exp the exception that caused this exception to be thrown
46      */
47     public PolicyApiException(final Exception exp) {
48         super(exp);
49     }
50
51     /**
52      * Instantiates a new policy api exception with a message and a caused by exception.
53      *
54      * @param message the message
55      * @param exp     the exception that caused this exception to be thrown
56      */
57     public PolicyApiException(final String message, final Exception exp) {
58         super(message, exp);
59     }
60 }