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

ch.viascom.hipchat.api.exception.HipChatAPIException Maven / Gradle / Ivy

There is a newer version: 2.1-RC3
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy