org.zendesk.client.v2.ZendeskException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zendesk-java-client Show documentation
Show all versions of zendesk-java-client Show documentation
Java client for the Zendesk API
The newest version!
package org.zendesk.client.v2;
/**
* @author stephenc
* @since 04/04/2013 14:24
*/
public class ZendeskException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ZendeskException(String message) {
super(message);
}
public ZendeskException() {}
public ZendeskException(Throwable cause) {
super(cause);
}
public ZendeskException(String message, Throwable cause) {
super(message, cause);
}
}