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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy