blob: 50432a1d791b7428d059d422d5bd184646a27803 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.exceptions;
24
25import org.springframework.http.HttpStatus;
26import org.springframework.web.bind.annotation.ResponseStatus;
27
28@ResponseStatus(value=HttpStatus.SERVICE_UNAVAILABLE)
29public class VidServiceUnavailableException extends Exception {
30
31 private static final long serialVersionUID = 1L;
32
33 /**
34 * Instantiates a new vid service unavailable exception.
35 */
36 public VidServiceUnavailableException() {
37 super();
38 }
39
40 /**
41 * Instantiates a new vid service unavailable exception.
42 *
43 * @param msg the msg
44 */
45 public VidServiceUnavailableException(String msg) {
46 super(msg);
47 }
48
49 /**
50 * Instantiates a new vid service unavailable exception.
51 *
52 * @param t the t
53 */
54 public VidServiceUnavailableException(Throwable t) {
55 super(t);
56 }
57
58 /**
59 * Instantiates a new vid service unavailable exception.
60 *
61 * @param msg the msg
62 * @param t the t
63 */
64 public VidServiceUnavailableException(String msg, Throwable t) {
65 super(msg, t);
66 }
67}