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

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

There is a newer version: 6.11.0
Show newest version
/*******************************************************************************
 * Copyright (c) 2021, 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;

/**
 * Represents a transient problem when establishing a session.
 * 

* On receiving such an exception it is reasonable for the caller to try opening * a session again. * * @author DiffusionData Limited * @since 6.6 */ public class SessionEstablishmentTransientException extends SessionEstablishmentException { private static final long serialVersionUID = 3316376354885332828L; /** * Constructor. */ public SessionEstablishmentTransientException(String message) { super(message); } /** * Constructor. */ public SessionEstablishmentTransientException(Throwable cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy