cd0562f90084d5a0d02e9341ac1cf198811227ee
[policy/models.git] / models-base / src / main / java / org / onap / policy / models / base / PfModelRuntimeException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019, 2021 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.base;
22
23 import javax.ws.rs.core.Response;
24 import lombok.Getter;
25 import lombok.ToString;
26 import org.onap.policy.models.errors.concepts.ErrorResponse;
27 import org.onap.policy.models.errors.concepts.ErrorResponseInfo;
28 import org.onap.policy.models.errors.concepts.ErrorResponseUtils;
29
30 /**
31  * This class is a base model run time exception from which all model run time exceptions are sub classes.
32  */
33 @Getter
34 @ToString
35 public class PfModelRuntimeException extends RuntimeException implements ErrorResponseInfo {
36     private static final long serialVersionUID = -8507246953751956974L;
37
38     // The error response of the exception
39     private final ErrorResponse errorResponse = new ErrorResponse();
40
41     // The object on which the exception was thrown
42     private final transient Object object;
43
44     /**
45      * Instantiates a new model runtime exception.
46      *
47      * @param statusCode the return code for the exception
48      * @param message the message on the exception
49      */
50     public PfModelRuntimeException(final Response.Status statusCode, final String message) {
51         this(statusCode, message, null);
52     }
53
54     /**
55      * Instantiates a new model runtime exception.
56      *
57      * @param statusCode the return code for the exception
58      * @param message the message on the exception
59      * @param object the object that the exception was thrown on
60      */
61     public PfModelRuntimeException(final Response.Status statusCode, final String message, final Object object) {
62         super(message);
63         this.object = object;
64         errorResponse.setResponseCode(statusCode);
65         ErrorResponseUtils.getExceptionMessages(errorResponse, this);
66     }
67
68     /**
69      * Instantiates a new model runtime exception.
70      *
71      * @param statusCode the return code for the exception
72      * @param message the message on the exception
73      * @param exception the exception that caused this model exception
74      */
75     public PfModelRuntimeException(final Response.Status statusCode, final String message, final Exception exception) {
76         this(statusCode, message, exception, null);
77     }
78
79     /**
80      * Instantiates a new model runtime exception from a PfModelException instance.
81      *
82      * @param exception the exception that caused this model exception
83      */
84     public PfModelRuntimeException(final PfModelException exception) {
85         super(exception.getMessage(), exception);
86         this.object = exception.getObject();
87         errorResponse.setResponseCode(exception.getErrorResponse().getResponseCode());
88         ErrorResponseUtils.getExceptionMessages(errorResponse, this);
89     }
90
91     /**
92      * Instantiates a new model runtime exception.
93      *
94      * @param statusCode the return code for the exception
95      * @param message the message on the exception
96      * @param exception the exception that caused this model exception
97      * @param object the object that the exception was thrown on
98      */
99     public PfModelRuntimeException(final Response.Status statusCode, final String message, final Exception exception,
100             final Object object) {
101         super(message, exception);
102         this.object = object;
103         errorResponse.setResponseCode(statusCode);
104         ErrorResponseUtils.getExceptionMessages(errorResponse, this);
105     }
106 }