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

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

There is a newer version: 6.11.2
Show newest version
/*******************************************************************************
 * Copyright (c) 2023 DiffusionData Ltd., All Rights Reserved.
 *
 * Use is subject to license terms.
 *
 * NOTICE: All information contained herein is, and remains the
 * property of Push Technology. The intellectual and technical
 * concepts contained herein are proprietary to Push Technology 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;

/**
 * The session operation failed due to a security constraint. Repeating
 * the operation with the same security credentials is likely to fail.
 *
 * @author DiffusionData Limited
 * @since 5.0
 */
public class SessionSecurityException extends SessionException {

    private static final long serialVersionUID = -4306256298762792308L;

    /**
     * Constructor.
     */
    public SessionSecurityException() {
        this(
            "The session operation failed due to a violated security constraint");
    }

    /**
     * @see RuntimeException#RuntimeException(String)
     *
     * @param description the exception message
     * @since 6.0
     */
    public SessionSecurityException(String description) {
        super(description);
    }

    /**
     * @see RuntimeException#RuntimeException(String, Throwable)
     *
     * @param description the exception message
     * @param cause of the exception
     * @since 6.6
     */
    public SessionSecurityException(String description, Throwable cause) {
        super(description, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy