com.netuitive.iris.client.exception.RequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iris Show documentation
Show all versions of iris Show documentation
Java SDK for the Netuitive REST API
The newest version!
package com.netuitive.iris.client.exception;
/**
*
* @author john.king
*/
public class RequestException extends RuntimeException{
public RequestException(String message) {
super(message);
}
public RequestException(String message, Throwable cause) {
super(message, cause);
}
public RequestException(Exception ex){
super(ex);
}
}