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

im.nll.data.diffbot.exception.ClientException Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
package im.nll.data.diffbot.exception;

/**
 * client exception.
 *
 * @author fivesmallq
 * @version Revision: 1.0
 * @date 16/6/28 下午6:11
 */
public class ClientException extends RuntimeException {

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

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

    public ClientException() {
        super();
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy