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

com.rationaleemotions.GridApiException Maven / Gradle / Ivy

Go to download

A Grid Helper library that exposes the Grid's http APIs via simple to use APIs

The newest version!
package com.rationaleemotions;

/**
 * Represents all the problems that arise out of this library.
 */
public class GridApiException extends RuntimeException {
    public GridApiException(Throwable t) {
        super(t);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy