c611b87e5cd75fa02e0eb21a24a24a27c2ac8fb9
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / vdu / VduException.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.onap.so.adapters.vdu;
22
23 import org.onap.so.openstack.exceptions.MsoException;
24 import org.onap.so.openstack.exceptions.MsoExceptionCategory;
25
26 /**
27  * OpenStack exception.
28  */
29 public class VduException extends MsoException
30 {
31         
32         /**
33      * Serialization id.
34      */
35     private static final long serialVersionUID = 3313636124141766495L;
36     
37         /**
38          * Constructor to create a new VduException instance
39          * @param detail error details
40          */
41         public VduException (String detail) {
42                 // Set the detailed error as the Exception 'message'
43                 super(detail);
44                 // TODO:  Need a more generic category than OPENSTACK
45                 super.category = MsoExceptionCategory.OPENSTACK;
46         }
47         
48         /**
49          * Constructor to create a new VduException instance
50          * @param detail error details
51          * @param e the cause
52          */
53         public VduException (String detail, Exception e) {
54                 // Set the detailed error as the Exception 'message'
55                 super(detail, e);
56                 // TODO:  Need a more generic category than OPENSTACK
57                 super.category = MsoExceptionCategory.OPENSTACK;
58         }
59
60 }