com.pushtechnology.diffusion.client.features.ExclusiveUpdaterConflictException Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2020, 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;
import com.pushtechnology.diffusion.client.session.SessionException;
/**
* Thrown to indicate an update could not be applied because an exclusive update
* source is registered for the path.
*
* @author DiffusionData Limited
* @since 6.2
* @deprecated since 6.6
*
* This exception is no longer used and will be removed in a future
* release.
*/
@Deprecated
public final class ExclusiveUpdaterConflictException extends SessionException {
private static final long serialVersionUID = 5219543834228232271L;
/**
* Constructor.
*
* @param message the exception message
*/
public ExclusiveUpdaterConflictException(String message) {
super(message);
}
}