com.dropbox.core.BadResponseException 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;
/**
* Thrown when we the response from the Dropbox server isn't something we expect.
* For example, if the JSON returned by the server is malformed or missing fields.
*/
public class BadResponseException extends ProtocolException {
private static final long serialVersionUID = 0;
public BadResponseException(String requestId, String message) {
super(requestId, message);
}
public BadResponseException(String requestId, String message, Throwable cause) {
super(requestId, message, cause);
}
}