com.pushtechnology.diffusion.client.features.UpdateStreamRetryLimitException Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2017, 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.features;
/**
* Exception used to report the number of retry attempts have exceeded the limit.
*
* @author DiffusionData Limited
* @since 6.9
*/
public final class UpdateStreamRetryLimitException extends Exception {
private static final long serialVersionUID = -3001252237054232861L;
/**
* Constructor.
*/
public UpdateStreamRetryLimitException(String message) {
super(message);
}
}