com.rationaleemotions.GridApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of talk2grid Show documentation
Show all versions of talk2grid Show documentation
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