Update gvnfm-driver .gitreview file
[vfc/nfvo/driver/vnfm/gvnfm.git] / juju / juju-vnfmadapter / Juju-vnfmadapterService / service / src / main / java / org / onap / vfc / nfvo / vnfm / gvnfm / jujuvnfmadapter / common / VnfmException.java
1 /*
2  * Copyright 2016 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.common;
18
19 /**
20  * 
21  * Vnfm exception class.<br>
22  * <p>
23  * </p>
24  * 
25  * @author
26  * @version     NFVO 0.5  Sep 12, 2016
27  */
28 public class VnfmException extends Exception {
29
30     private static final long serialVersionUID = 1L;
31
32     /**
33      * 
34      * Constructor<br>
35      * <p>
36      * </p>
37      * 
38      * @since  NFVO 0.5
39      */
40     public VnfmException() {
41         super();
42     }
43
44     /**
45      * 
46      * Constructor<br>
47      * <p>
48      * </p>
49      * 
50      * @param message
51      * @param cause
52      * @since  NFVO 0.5
53      */
54     public VnfmException(String message, Throwable cause) {
55         super(message, cause);
56     }
57
58     /**
59      * 
60      * Constructor<br>
61      * <p>
62      * </p>
63      * 
64      * @param message
65      * @since  NFVO 0.5
66      */
67     public VnfmException(String message) {
68         super(message);
69     }
70
71     /**
72      * 
73      * Constructor<br>
74      * <p>
75      * </p>
76      * 
77      * @param cause
78      * @since  NFVO 0.5
79      */
80     public VnfmException(Throwable cause) {
81         super(cause);
82     }
83
84 }