
com.marklogic.client.ContentWrongVersionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-client-api Show documentation
Show all versions of marklogic-client-api Show documentation
The official MarkLogic Java client API.
The newest version!
package com.marklogic.client;
import com.marklogic.client.impl.FailedRequest;
/**
* Represents a "RESTAPI-CONTENTWRONGVERSION" error from the REST API that can occur when using optimistic locking.
*
* @since 6.3.0
*/
public class ContentWrongVersionException extends FailedRequestException {
public ContentWrongVersionException(String message, FailedRequest failedRequest) {
super(message, failedRequest);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy