Initial code Import.
[music.git] / src / main / java / org / onap / music / exceptions / MusicLockingException.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 MusicLockingException extends Exception {
29
30     /**
31      * 
32      */
33     public MusicLockingException() {
34
35     }
36
37     /**
38      * @param message
39      */
40     public MusicLockingException(String message) {
41         super(message);
42
43     }
44
45     /**
46      * @param cause
47      */
48     public MusicLockingException(Throwable cause) {
49         super(cause);
50
51     }
52
53     /**
54      * @param message
55      * @param cause
56      */
57     public MusicLockingException(String message, Throwable cause) {
58         super(message, cause);
59
60     }
61
62     /**
63      * @param message
64      * @param cause
65      * @param enableSuppression
66      * @param writableStackTrace
67      */
68     public MusicLockingException(String message, Throwable cause, boolean enableSuppression,
69                     boolean writableStackTrace) {
70         super(message, cause, enableSuppression, writableStackTrace);
71
72     }
73
74 }