c25fd17ec12efb4ebc08685b32d38e77832e7eba
[policy/models.git] / models-base / src / main / java / org / onap / policy / models / base / PfModelException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 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 exception from which all model exceptions are sub classes.
32  */
33 @Getter
34 @ToString
35 public class PfModelException extends Exception 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 exception.
46      *
47      * @param statusCode the return code for the exception
48      * @param message the message on the exception
49      */
50     public PfModelException(final Response.Status statusCode, final String message) {
51         this(statusCode, message, null);
52     }
53
54     /**
55      * Instantiates a new model 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 PfModelException(final Response.Status statusCode, final String message, final Object object) {
62         super(message);
63         errorResponse.setResponseCode(statusCode);
64         ErrorResponseUtils.getExceptionMessages(errorResponse, this);
65         this.object = object;
66     }
67
68     /**
69      * Instantiates a new model 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 exception
74      */
75     public PfModelException(final Response.Status statusCode, final String message, final Exception exception) {
76         this(statusCode, message, exception, null);
77     }
78
79     /**
80      * Instantiates a new exception.
81      *
82      * @param statusCode the return code for the exception
83      * @param message the message on the exception
84      * @param exception the exception that caused this exception
85      * @param object the object that the exception was thrown on
86      */
87     public PfModelException(final Response.Status statusCode, final String message, final Exception exception,
88             final Object object) {
89         super(message, exception);
90         errorResponse.setResponseCode(statusCode);
91         ErrorResponseUtils.getExceptionMessages(errorResponse, this);
92         this.object = object;
93     }
94 }