All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.baidu.discovery.client.exception.ServerCommunicationException Maven / Gradle / Ivy

package com.baidu.discovery.client.exception;

/**
 * @author Bowu Dong ([email protected])
 */
public class ServerCommunicationException extends RuntimeException {
    public ServerCommunicationException() {
    }

    public ServerCommunicationException(String message) {
        super(message);
    }

    public ServerCommunicationException(String message, Throwable cause) {
        super(message, cause);
    }

    public ServerCommunicationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy