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

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

There is a newer version: 7.0.0
Show newest version
package com.dropbox.core;

/**
 * Something unexpected happened with either the request or the response.
 * This can happen if there's a bug in the client code (including this
 * library), if there's a bug in on the Dropbox server, or if Dropbox
 * made a change to the API that changed the behavior of something and
 * we haven't upgraded our SDK yet.
 *
 * 

* Typically, these kinds of exceptions should be logged, so you can * investigate later. *

*/ public abstract class ProtocolException extends DbxException { private static final long serialVersionUID = 0; public ProtocolException(String requestId, String message) { super(requestId, message); } public ProtocolException(String requestId, String message, Throwable cause) { super(requestId, message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy