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

com.github.libgraviton.gdk.exception.CommunicationException Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package com.github.libgraviton.gdk.exception;

/**
 * Whenever a REST call roundtrip was not successfull (including mapping the response body to a POJO)
 */
public class CommunicationException extends Exception {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy