Removed MsoLogger class
[so.git] / adapters / mso-requests-db-adapter / src / main / java / org / onap / so / adapters / requestsdb / exceptions / MsoRequestsDbException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.so.adapters.requestsdb.exceptions;
22
23
24
25 import javax.xml.ws.WebFault;
26 import org.onap.so.exceptions.MSOException;
27 import org.onap.so.logger.ErrorCode;
28
29 /**
30  * This class simply extends Exception (without addition additional functionality)
31  * to provide an identifier for RequestsDB related exceptions on create, delete, query.
32  * 
33  *
34  */
35 @WebFault (name="MsoRequestsDbException", faultBean="org.onap.so.adapters.requestsdb.exceptions.MsoRequestsDbExceptionBean", targetNamespace="http://org.onap.so/requestsdb")
36 public class MsoRequestsDbException extends MSOException {
37
38     private static final long serialVersionUID = 1L;
39
40     private MsoRequestsDbExceptionBean faultInfo;
41
42
43     public MsoRequestsDbException (String msg) {
44         super(msg);
45         faultInfo = new MsoRequestsDbExceptionBean (msg);
46     }
47
48     public MsoRequestsDbException (Throwable e) {
49         super(e);
50         faultInfo = new MsoRequestsDbExceptionBean (e.getMessage());
51     }
52
53     public MsoRequestsDbException (String msg, Throwable e) {
54         super (msg, e);
55         faultInfo = new MsoRequestsDbExceptionBean (msg);
56     }
57
58     public MsoRequestsDbException(String msg, ErrorCode errorCode) {
59         super(msg,errorCode.getValue());
60     }
61
62     public MsoRequestsDbException(String msg, ErrorCode errorCode, Throwable t) {
63         super(msg,errorCode.getValue(), t);
64     }
65
66     public MsoRequestsDbExceptionBean getFaultInfo() {
67         return faultInfo;
68     }
69
70     public void setFaultInfo(MsoRequestsDbExceptionBean faultInfo) {
71         this.faultInfo = faultInfo;
72     }
73 }