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

com.unzer.payment.communication.HttpCommunicationException Maven / Gradle / Ivy

package com.unzer.payment.communication;

/**
 * Generic exception for HttpCommunication module.
 */
public class HttpCommunicationException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    /**
     * Constructor create instance with message.
     *
     * @param message refers to the declared message
     */
    public HttpCommunicationException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy