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

com.pushtechnology.diffusion.client.features.RejectedRequestException Maven / Gradle / Ivy

There is a newer version: 6.11.2
Show newest version
package com.pushtechnology.diffusion.client.features;

import com.pushtechnology.diffusion.client.session.SessionException;

/**
 * Exception used to report that a recipient session
 * has rejected a request.
 *
 * @author DiffusionData Limited
 * @since 6.0
 */
public final class RejectedRequestException extends SessionException {

    private static final long serialVersionUID = -5929691074795962873L;

    /**
     * Constructor.
     *
     * @param message the exception message
     */
    public RejectedRequestException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy