com.pushtechnology.diffusion.client.features.UpdateStreamBufferException 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;
/**
* Exception used to report the update stream buffer have exceeded its limit.
*
* @author DiffusionData Limited
* @since 6.9
*/
public final class UpdateStreamBufferException extends Exception {
private static final long serialVersionUID = 933855817552524502L;
/**
* Constructor.
*/
public UpdateStreamBufferException(String message) {
super(message);
}
}