
org.hydracache.server.data.versioning.VersionConflictException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of conflict-resolver Show documentation
Show all versions of conflict-resolver Show documentation
Hydra Cache version conflict resolver module
The newest version!
package org.hydracache.server.data.versioning;
public class VersionConflictException extends Exception {
private static final long serialVersionUID = 1L;
public VersionConflictException() {
super();
}
public VersionConflictException(String message, Throwable cause) {
super(message, cause);
}
public VersionConflictException(String message) {
super(message);
}
public VersionConflictException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy