First part of onap rename
[appc.git] / appc-dg / appc-dg-shared / appc-dg-mdsal-store / src / main / java / org / openecomp / appc / mdsal / exception / MDSALStoreException.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.mdsal.exception;
26
27 /**
28  * This is custom exception type defined for MD-SAL store. All exceptions thrown by mdsal store module need to be wrapped in this class.
29 */
30  public class MDSALStoreException extends Exception {
31
32     private static final long serialVersionUID = 1L;
33
34     public MDSALStoreException(){
35     }
36
37     /**
38      * Create MDSALStoreException using only message.
39      * @param message -- message to the caller.
40      */
41     public MDSALStoreException (String message){
42         super(message);
43     }
44
45     /**
46      * Create MDSALStoreException using orignal cause
47      * @param cause - cause that is being wrapped / suppressed.
48      */
49     public MDSALStoreException (Throwable cause){
50         super(cause);
51     }
52
53     /**
54      *
55      * @param message - message to the caller.
56      * @param cause - cause that is being wrapped / suppressed .
57      */
58     public MDSALStoreException(String message , Throwable cause){
59         super(message , cause);
60     }
61
62     /**
63      *
64      * @param message - message to the caller.
65      * @param cause - cause that is being wrapped / suppressed .
66      * @param enableSuppression - Indicates if suppression is enabled.
67      * @param writableStackTrace - Indicates if writable stacktrace is supported
68      */
69     public MDSALStoreException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
70         super(message, cause, enableSuppression, writableStackTrace);
71     }
72 }