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

org.zendesk.client.v2.ZendeskException Maven / Gradle / Ivy

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy