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

com.pushtechnology.diffusion.client.session.SessionEstablishmentException Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2014, 2023 DiffusionData Ltd., All Rights Reserved.
 *
 * Use is subject to licence terms.
 *
 * NOTICE: All information contained herein is, and remains the
 * property of DiffusionData. The intellectual and technical
 * concepts contained herein are proprietary to DiffusionData and
 * may be covered by U.S. and Foreign Patents, patents in process, and
 * are protected by trade secret or copyright law.
 *******************************************************************************/
package com.pushtechnology.diffusion.client.session;

/**
 * There was a problem when establishing a Session.
 *
 * @author DiffusionData Limited
 * @since 5.1
 */
public class SessionEstablishmentException extends SessionClosedException {

    private static final long serialVersionUID = -1305460330313652757L;

    /**
     * Constructor.
     */
    public SessionEstablishmentException(String message) {
        super(message);
    }

    /**
     * @see SessionClosedException#SessionClosedException(Throwable)
     *
     * @param cause of the failure, if any, may be null
     */
    public SessionEstablishmentException(Throwable cause) {
        this("The session failed to be established. No further operations are possible",
            cause);
    }

    /**
     * @see SessionClosedException#SessionClosedException(String, Throwable)
     *
     * @param description of the exception
     *
     * @param cause of the failure, if any, may be null
     */
    public SessionEstablishmentException(String description, Throwable cause) {
        super(description, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy