Fixed sonar issues in ProtocolSupport.java
[music.git] / src / main / java / org / onap / music / exceptions / MusicPolicyVoilationException.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
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  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22 package org.onap.music.exceptions;
23
24 /**
25  * @author inam
26  *
27  */
28 public class MusicPolicyVoilationException extends Exception {
29
30     /**
31      * 
32      */
33     private static final long serialVersionUID = 1L;
34
35     /**
36      * 
37      */
38     public MusicPolicyVoilationException() {
39         // TODO Auto-generated constructor stub
40     }
41
42     /**
43      * @param message
44      */
45     public MusicPolicyVoilationException(String message) {
46         super(message);
47         // TODO Auto-generated constructor stub
48     }
49
50     /**
51      * @param cause
52      */
53     public MusicPolicyVoilationException(Throwable cause) {
54         super(cause);
55         // TODO Auto-generated constructor stub
56     }
57
58     /**
59      * @param message
60      * @param cause
61      */
62     public MusicPolicyVoilationException(String message, Throwable cause) {
63         super(message, cause);
64         // TODO Auto-generated constructor stub
65     }
66
67     /**
68      * @param message
69      * @param cause
70      * @param enableSuppression
71      * @param writableStackTrace
72      */
73     public MusicPolicyVoilationException(String message, Throwable cause, boolean enableSuppression,
74                     boolean writableStackTrace) {
75         super(message, cause, enableSuppression, writableStackTrace);
76         // TODO Auto-generated constructor stub
77     }
78
79 }