com.pushtechnology.diffusion.client.features.control.topics.RoutingSubscriptionException Maven / Gradle / Ivy
/*******************************************************************************
* 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.features.control.topics;
import com.pushtechnology.diffusion.client.session.SessionException;
/**
* Exception used to report a failure to establish a routing subscription.
*
* @author DiffusionData Limited
* @since 6.0
* @see SubscriptionControl.RoutingSubscriptionRequest#route(String)
* @deprecated since 6.7
*
* Routing topics are deprecated. The more powerful
* {@link SessionTrees} feature should be used in their place.
*/
@Deprecated
public class RoutingSubscriptionException extends SessionException {
private static final long serialVersionUID = -8335684800895866481L;
/**
* Constructor.
*
* @param message the detail message
*/
public RoutingSubscriptionException(String message) {
super(message);
}
}