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

com.pushtechnology.diffusion.client.session.SessionException 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;

/**
 * General class of exceptions indicating a {@link Session} specific
 * failure.
 * 

* A {@code SessionException} may result from any of the API methods that * interact with the server. * * @author DiffusionData Limited * @since 5.0 */ public class SessionException extends RuntimeException { private static final long serialVersionUID = 4656998400937006125L; /** * @see RuntimeException#RuntimeException() */ public SessionException() { } /** * @see RuntimeException#RuntimeException(String) * * @param description the exception message */ public SessionException(String description) { super(description); } /** * @see RuntimeException#RuntimeException(Throwable) * * @param cause the exception cause */ public SessionException(Throwable cause) { super(cause); } /** * @see RuntimeException#RuntimeException(String, Throwable) * * @param description of the exception * * @param cause of the exception */ public SessionException(String description, Throwable cause) { super(description, cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy