Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions core/src/main/java/com/dropbox/core/DbxApiException.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.dropbox.core;

import javax.annotation.Nullable;

/**
* Base class for API-specific exceptions raised by API v2 routes.
*/
Expand All @@ -25,6 +27,7 @@ public DbxApiException(String requestId, LocalizedText userMessage, String messa
*
* @return human-readable message to display to end user, or {@code null} if unavailable
*/
@Nullable
public LocalizedText getUserMessage() {
return userMessage;
}
Expand Down