3bb04a20799811129b34232b986be7822c24ffd2
[ccsdk/features.git] /
1 /*\r
2  * Copyright © 2017-2018 AT&T Intellectual Property.\r
3  * \r
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except\r
5  * in compliance with the License. You may obtain a copy of the License at\r
6  * \r
7  * http://www.apache.org/licenses/LICENSE-2.0\r
8  * \r
9  * Unless required by applicable law or agreed to in writing, software distributed under the License\r
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\r
11  * or implied. See the License for the specific language governing permissions and limitations under\r
12  * the License.\r
13  */\r
14 \r
15 package org.onap.ccsdk.config.rest.adaptor;\r
16 \r
17 /**\r
18  * ConfigRestAdaptorException.java Purpose: Provide Configuration Rest Adaptor Exception\r
19  *\r
20  * @version 1.0\r
21  */\r
22 public class ConfigRestAdaptorException extends Exception {\r
23     \r
24     /**\r
25      *\r
26      */\r
27     private static final long serialVersionUID = 1L;\r
28     \r
29     /**\r
30      * This is a ConfigRestAdaptorException constructor\r
31      *\r
32      * @param message\r
33      */\r
34     public ConfigRestAdaptorException(String message) {\r
35         super(message);\r
36     }\r
37     \r
38     /**\r
39      * This is a ConfigRestAdaptorException constructor\r
40      *\r
41      * @param message\r
42      */\r
43     public ConfigRestAdaptorException(String message, Throwable cause) {\r
44         super(message, cause);\r
45     }\r
46     \r
47 }\r