com.eligible.exception.APIException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eligible-java Show documentation
Show all versions of eligible-java Show documentation
Java bindings for Eligible APIs (https://eligible.com).
package com.eligible.exception;
/**
* Internal API exception.
*/
public class APIException extends EligibleException {
private static final long serialVersionUID = 1L;
/**
* Create APIConnectionException with message, requestId and cause.
*
* @param message message
*/
public APIException(String message) {
super(message);
}
/**
* Create APIConnectionException with message, requestId and cause.
*
* @param message message
* @param e cause
*/
public APIException(String message, Throwable e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy