Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ public class AuthFailureError extends NetroidError {
/**
* An intent that can be used to resolve this exception. (Brings up the password dialog.)
*/
private Intent mResolutionIntent;
private final Intent mResolutionIntent;

public AuthFailureError() {
mResolutionIntent = null;
}

public AuthFailureError(Intent intent) {
Expand All @@ -35,14 +36,17 @@ public AuthFailureError(Intent intent) {

public AuthFailureError(NetworkResponse response) {
super(response);
mResolutionIntent = null;
}

public AuthFailureError(String message) {
super(message);
mResolutionIntent = null;
}

public AuthFailureError(String message, Exception reason) {
super(message, reason);
mResolutionIntent = null;
}

public Intent getResolutionIntent() {
Expand Down