ch.viascom.hipchat.api.exception.HipChatAPIException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hipchat-api Show documentation
Show all versions of hipchat-api Show documentation
A HipChat v2 API full implementation for Java
package ch.viascom.hipchat.api.exception;
import ch.viascom.groundwork.foxhttp.exception.FoxHttpException;
/**
* @author [email protected]
*/
public class HipChatAPIException extends FoxHttpException {
public HipChatAPIException(Throwable cause) {
super(cause);
}
public HipChatAPIException(String message) {
super(message);
}
public HipChatAPIException(String message, Throwable cause) {
super(message, cause);
}
}