com.dropbox.core.BadRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropbox-core-sdk Show documentation
Show all versions of dropbox-core-sdk Show documentation
Official Java client library for the Dropbox API.
package com.dropbox.core;
/**
* This is what is thrown when the Dropbox server tells us that it didn't like something about our
* request. This corresponds to the HTTP 400 status code.
*/
public class BadRequestException extends ProtocolException {
private static final long serialVersionUID = 0;
public BadRequestException(String requestId, String message) {
super(requestId, message);
}
}