Change: add OPEN-O seed code for VF-C
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / main / java / org / openo / nfvo / vnfmadapter / 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.openo.nfvo.vnfmadapter.common;
18
19 /**
20  * VNFM exception.
21  * .</br>
22  *
23  * @author
24  * @version     NFVO 0.5  Sep 10, 2016
25  */
26 public class VnfmException extends Exception {
27
28     private static final long serialVersionUID = 1L;
29
30     /**
31      *
32      * Constructor<br>
33      *
34      * @since  NFVO 0.5
35      */
36     public VnfmException() {
37         super();
38     }
39
40     /**
41      *
42      * Constructor<br>
43      *
44      * @param message
45      * @param cause
46      * @since  NFVO 0.5
47      */
48     public VnfmException(String message, Throwable cause) {
49         super(message, cause);
50     }
51
52     /**
53      *
54      * Constructor<br>
55      *
56      * @param message
57      * @since  NFVO 0.5
58      */
59     public VnfmException(String message) {
60         super(message);
61     }
62
63     /**
64      *
65      * Constructor<br>
66      *
67      * @param cause
68      * @since  NFVO 0.5
69      */
70     public VnfmException(Throwable cause) {
71         super(cause);
72     }
73
74 }