
com.marklogic.client.FailedRequestException 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!
/*
* Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
*/
package com.marklogic.client;
import com.marklogic.client.impl.FailedRequest;
/**
* A FailedRequestException is used to capture and report on problems
* from the REST API. This class is a semantically thin one, meaning that it is used as
* catch-all for various things that can go wrong on the REST server.
*/
@SuppressWarnings("serial")
public class FailedRequestException extends MarkLogicServerException {
public FailedRequestException(String message) {
super(message);
}
public FailedRequestException(String localMessage, Throwable cause) {
super(localMessage, cause);
}
public FailedRequestException(String localMessage, FailedRequest failedRequest) {
super(localMessage, failedRequest);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy