ba591cbdeeb720892582f94c76c7e3bb96ebbf64
[msb/discovery.git] / sdclient / discovery-service / src / main / java / org / onap / msb / sdclient / wrapper / consul / ConsulException.java
1 /**
2  * Copyright 2016-2017 ZTE, Inc. and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.msb.sdclient.wrapper.consul;
17
18 /**
19  * Wraps an exception thrown whilst interacting with the Consul API.
20  */
21 public class ConsulException extends RuntimeException {
22
23     /**
24      * Constructs an instance of this class.
25      *
26      * @param message The exception message.
27      */
28     public ConsulException(String message) {
29         super(message);
30     }
31
32     /**
33      * Constructs an instance of this class.
34      *
35      * @param message The exception message.
36      * @param throwable The wrapped {@link java.lang.Throwable} object.
37      */
38     public ConsulException(String message, Throwable throwable) {
39         super(message, throwable);
40     }
41 }