com.sap.cloud.rest.api.client.exceptions.RequestBuilderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-client Show documentation
Show all versions of rest-api-client Show documentation
Java HTTP client library for HTTP handling, when building clients for RESTful APIs.
The newest version!
package com.sap.cloud.rest.api.client.exceptions;
import com.sap.cloud.rest.api.client.RequestBuilder;
import com.sap.cloud.rest.api.client.model.Request;
/**
* This exception represents an error, occurred while building a {@link Request}
* object using the {@link RequestBuilder}.
*
*/
public class RequestBuilderException extends RestApiClientException {
private static final long serialVersionUID = 1L;
/**
* @param message Exception message.
*/
public RequestBuilderException(String message) {
super(message);
}
/**
* @param message Exception message.
* @param cause Exception cause.
*/
public RequestBuilderException(String message, Throwable cause) {
super(message, cause);
}
}