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

io.polyapi.commons.api.error.PolyApiException Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
package io.polyapi.commons.api.error;

/**
 * Default exception that wraps all exceptions thrown as part of the normal usage of Poly API tools.
 */
public class PolyApiException extends RuntimeException {

  /**
   * @see RuntimeException#RuntimeException()
   */
  public PolyApiException() {
    super();
  }

  /**
   * @see RuntimeException#RuntimeException(String)
   */
  public PolyApiException(String message) {
    super(message);
  }

  /**
   * @see RuntimeException#RuntimeException(String, Throwable)
   */
  public PolyApiException(String message, Throwable cause) {
    super(message, cause);
  }

  /**
   * @see RuntimeException#RuntimeException(Throwable)
   */
  public PolyApiException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy