Upgrade epsdk version to 2.6.0 (but keep overlay 2.5.0) (fix)
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / ExceptionResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.model;
22
23 import org.onap.logging.ref.slf4j.ONAPLogConstants.MDCs;
24 import org.slf4j.MDC;
25
26 /**
27  * The Class ExceptionResponse.
28  */
29 public class ExceptionResponse {
30
31         public ExceptionResponse() {
32         }
33
34         /** The exception. */
35         private String exception;
36         
37         /** The message. */
38         private String message;
39
40         public ExceptionResponse(String exception, String message) {
41                 this.exception = exception;
42                 this.message = message;
43         }
44
45         public ExceptionResponse(Exception exception) {
46                 setException(exception);
47         }
48
49         /**
50          * Gets the exception.
51          *
52          * @return the exception
53          */
54         public String getException() {
55                 return exception;
56         }
57
58         /**
59          * Sets the exception.
60          *
61          * @param exception the new exception
62          */
63         public void setException(String exception) {
64                 this.exception = exception;
65         }
66
67         public void setException(Exception exception) {
68                 setException(exception.getClass().toString().replaceFirst("^.*[\\.$]", ""));
69                 setMessage(exception.getMessage() + " (Request id: " + MDC.get(MDCs.REQUEST_ID) + ")");
70         }
71
72         /**
73          * Gets the message.
74          *
75          * @return the message
76          */
77         public String getMessage() {
78                 return message;
79         }
80
81         /**
82          * Sets the message.
83          *
84          * @param message the new message
85          */
86         public void setMessage(String message) {
87                 this.message = message;
88         }
89
90 }