Initial OpenECOMP MSO commit
[so.git] / adapters / mso-adapter-utils / src / main / java / org / openecomp / mso / openstack / exceptions / MsoOpenstackException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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.openecomp.mso.openstack.exceptions;
22
23
24 /**
25  * OpenStack exception.
26  */
27 public class MsoOpenstackException extends MsoException
28 {
29         
30         /**
31      * Serialization id.
32      */
33     private static final long serialVersionUID = 3313636124141766495L;
34     
35     private int statusCode;
36         private String statusMessage;
37         private String errorDetail;
38
39         /**
40          * Constructor to create a new MsoOpenstackException instance
41          * @param code the error code
42          * @param message the error message
43          * @param detail error details
44          */
45         public MsoOpenstackException (int code, String message, String detail) {
46                 // Set the detailed error as the Exception 'message'
47                 super(detail);
48                 super.category = MsoExceptionCategory.OPENSTACK;
49                 
50                 this.statusCode = code;
51                 this.statusMessage = message;
52                 this.errorDetail = detail;
53         }
54         
55         /**
56          * Constructor to propagate the caught exception (mostly for stack trace)
57      * @param code the error code
58      * @param message the error message
59      * @param detail error details
60          * @param e the cause
61          */
62         public MsoOpenstackException (int code, String message, String detail, Exception e) {
63                 // Set the detailed error as the Exception 'message'
64                 super(detail, e);
65                 super.category = MsoExceptionCategory.OPENSTACK;
66                 
67                 this.statusCode = code;
68                 this.statusMessage = message;
69                 this.errorDetail = detail;
70         }
71         
72         @Override
73         public String toString () {
74                 String error = "" + statusCode + " " + statusMessage + ": " + errorDetail;
75                 return error;
76         }
77 }