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

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

There is a newer version: 1.13.13
Show newest version
package com.eligible.exception;

/**
 * Connection exception to API endpoint.
 */
public class APIConnectionException extends EligibleException {

    private static final long serialVersionUID = 1L;

    /**
     * Create APIConnectionException with message.
     *
     * @param message message
     */
    public APIConnectionException(String message) {
        super(message);
    }

    /**
     * Create APIConnectionException with message and cause.
     *
     * @param message message
     * @param e cause of this exception
     */
    public APIConnectionException(String message, Throwable e) {
        super(message, e);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy