[VID-6] Initial rebase push
[vid.git] / vid-app-common / src / main / java / org / openecomp / vid / exceptions / VidServiceUnavailableException.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * VID\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.openecomp.vid.exceptions;\r
22 \r
23 import org.springframework.http.HttpStatus;\r
24 import org.springframework.web.bind.annotation.ResponseStatus;\r
25 \r
26 /**\r
27  * The Class VidServiceUnavailableException.\r
28  */\r
29 @ResponseStatus(value=HttpStatus.SERVICE_UNAVAILABLE)\r
30 public class VidServiceUnavailableException extends Exception {\r
31 \r
32         /** The Constant serialVersionUID. */\r
33         private static final long serialVersionUID = 1L;\r
34 \r
35         /**\r
36          * Instantiates a new vid service unavailable exception.\r
37          */\r
38         public VidServiceUnavailableException() {\r
39                 super();\r
40         }\r
41         \r
42         /**\r
43          * Instantiates a new vid service unavailable exception.\r
44          *\r
45          * @param msg the msg\r
46          */\r
47         public VidServiceUnavailableException(String msg) {\r
48                 super(msg);\r
49         }\r
50         \r
51         /**\r
52          * Instantiates a new vid service unavailable exception.\r
53          *\r
54          * @param t the t\r
55          */\r
56         public VidServiceUnavailableException(Throwable t) {\r
57                 super(t);\r
58         }\r
59         \r
60         /**\r
61          * Instantiates a new vid service unavailable exception.\r
62          *\r
63          * @param msg the msg\r
64          * @param t the t\r
65          */\r
66         public VidServiceUnavailableException(String msg, Throwable t) {\r
67                 super(msg, t);\r
68         }\r
69 }\r