Push variuos changes
[music.git] / jar / 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
23 package org.onap.music.exceptions;
24
25 /**
26  * @author inam
27  *
28  */
29 public class MusicPolicyVoilationException extends Exception {
30
31     /**
32      * 
33      */
34     private static final long serialVersionUID = 1L;
35
36     /**
37      * 
38      */
39     public MusicPolicyVoilationException() {
40         // TODO Auto-generated constructor stub
41     }
42
43     /**
44      * @param message
45      */
46     public MusicPolicyVoilationException(String message) {
47         super(message);
48         // TODO Auto-generated constructor stub
49     }
50
51     /**
52      * @param cause
53      */
54     public MusicPolicyVoilationException(Throwable cause) {
55         super(cause);
56         // TODO Auto-generated constructor stub
57     }
58
59     /**
60      * @param message
61      * @param cause
62      */
63     public MusicPolicyVoilationException(String message, Throwable cause) {
64         super(message, cause);
65         // TODO Auto-generated constructor stub
66     }
67
68     /**
69      * @param message
70      * @param cause
71      * @param enableSuppression
72      * @param writableStackTrace
73      */
74     public MusicPolicyVoilationException(String message, Throwable cause, boolean enableSuppression,
75                     boolean writableStackTrace) {
76         super(message, cause, enableSuppression, writableStackTrace);
77         // TODO Auto-generated constructor stub
78     }
79
80 }