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

com.intesens.kinto_http.ClientException Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package com.intesens.kinto_http;

/**
 * Created by amalle on 16/09/16.
 * Http client exception class
 */
public class ClientException extends Exception {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy