Merge "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  * Modifications Copyright (c) 2018 IBM
8  * ===================================================================
9  *  Licensed under the Apache License, Version 2.0 (the "License");
10  *  you may not use this file except in compliance with the License.
11  *  You may obtain a copy of the License at
12  * 
13  *     http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  *  Unless required by applicable law or agreed to in writing, software
16  *  distributed under the License is distributed on an "AS IS" BASIS,
17  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  *  See the License for the specific language governing permissions and
19  *  limitations under the License.
20  * 
21  * ============LICENSE_END=============================================
22  * ====================================================================
23  */
24 package org.onap.music.exceptions;
25
26 /**
27  * @author inam
28  *
29  */
30 public class MusicPolicyVoilationException extends Exception {
31
32     /**
33      * 
34      */
35     private static final long serialVersionUID = 1L;
36
37     /**
38      * 
39      */
40     public MusicPolicyVoilationException() {
41         
42     }
43
44     /**
45      * @param message
46      */
47     public MusicPolicyVoilationException(String message) {
48         super(message);
49         
50     }
51
52     /**
53      * @param cause
54      */
55     public MusicPolicyVoilationException(Throwable cause) {
56         super(cause);
57        
58     }
59
60     /**
61      * @param message
62      * @param cause
63      */
64     public MusicPolicyVoilationException(String message, Throwable cause) {
65         super(message, cause);
66        
67     }
68
69     /**
70      * @param message
71      * @param cause
72      * @param enableSuppression
73      * @param writableStackTrace
74      */
75     public MusicPolicyVoilationException(String message, Throwable cause, boolean enableSuppression,
76                     boolean writableStackTrace) {
77         super(message, cause, enableSuppression, writableStackTrace);
78        
79     }
80
81 }