All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dropbox.core.BadResponseException Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
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);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy