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

com.eligible.exception.APIException Maven / Gradle / Ivy

There is a newer version: 1.13.13
Show newest version
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