24b8568b1618e117ac8c986ed5d459a7b842c9be
[music.git] / jar / src / main / java / org / onap / music / exceptions / MusicQueryException.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
26 /**
27  * @author inam
28  *
29  */
30 public class MusicQueryException extends Exception {
31
32     /**
33      * 
34      */
35     private static final long serialVersionUID = 1L;
36     private int errorCode;
37
38
39     /**
40      * 
41      */
42     public MusicQueryException() {
43         super();
44     }
45
46     /**
47      * @param message
48      */
49     public MusicQueryException(String message) {
50         super(message);
51     }
52
53
54
55     /**
56      * @param message
57      */
58     public MusicQueryException(String message, int errorCode) {
59         super(message);
60         this.errorCode = errorCode;
61     }
62
63     /**
64      * @param cause
65      */
66     public MusicQueryException(Throwable cause) {
67         super(cause);
68     }
69
70     /**
71      * @param message
72      * @param cause
73      */
74     public MusicQueryException(String message, Throwable cause) {
75         super(message, cause);
76     }
77
78     /**
79      * @param message
80      * @param cause
81      * @param enableSuppression
82      * @param writableStackTrace
83      */
84     public MusicQueryException(String message, Throwable cause, boolean enableSuppression,
85                     boolean writableStackTrace) {
86         super(message, cause, enableSuppression, writableStackTrace);
87     }
88
89 }