You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/FirebaseAppDistributionException.java
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -127,23 +127,29 @@ static class ErrorMessages {
127
127
publicstaticfinalStringNETWORK_ERROR =
128
128
"Failed to fetch releases due to unknown network error.";
129
129
130
-
publicstaticfinalStringJSON_PARSING_ERROR = "Error parsing service response when checking for new release. This is a most likely due to a transient condition and may be corrected by retrying.";
130
+
publicstaticfinalStringJSON_PARSING_ERROR =
131
+
"Error parsing service response when checking for new release. This is a most likely due to a transient condition and may be corrected by retrying.";
131
132
132
-
publicstaticfinalStringAUTHENTICATION_ERROR = "Failed to authenticate the tester. The tester was either not signed in, or something went wrong. Try signing in again.";
133
+
publicstaticfinalStringAUTHENTICATION_ERROR =
134
+
"Failed to authenticate the tester. The tester was either not signed in, or something went wrong. Try signing in again.";
133
135
134
-
publicstaticfinalStringAUTHORIZATION_ERROR = "Failed to authorize the tester. The tester is not authorized to test this app. Verify that the tester has accepted an invitation to test this app.";
136
+
publicstaticfinalStringAUTHORIZATION_ERROR =
137
+
"Failed to authorize the tester. The tester is not authorized to test this app. Verify that the tester has accepted an invitation to test this app.";
135
138
136
139
publicstaticfinalStringAUTHENTICATION_CANCELED = "Tester canceled the authentication flow.";
137
140
138
-
publicstaticfinalStringNOT_FOUND_ERROR = "Release not found. An update is not available for the current tester and app. Make sure that FirebaseAppDistribution#checkForNewRelease returns with a non-null AppDistributionRelease before calling FirebaseAppDistribution#updateApp";
141
+
publicstaticfinalStringNOT_FOUND_ERROR =
142
+
"Release not found. An update is not available for the current tester and app. Make sure that FirebaseAppDistribution#checkForNewRelease returns with a non-null AppDistributionRelease before calling FirebaseAppDistribution#updateApp";
139
143
140
-
publicstaticfinalStringTIMEOUT_ERROR = "Failed to fetch releases due to timeout. Check your internet connection and try again.";
144
+
publicstaticfinalStringTIMEOUT_ERROR =
145
+
"Failed to fetch releases due to timeout. Check your internet connection and try again.";
141
146
142
147
publicstaticfinalStringUPDATE_CANCELED = "Tester canceled the update.";
publicstaticfinalStringDOWNLOAD_URL_NOT_FOUND = "Download URL not found. This is a most likely due to a transient condition and may be corrected by retrying.";
151
+
publicstaticfinalStringDOWNLOAD_URL_NOT_FOUND =
152
+
"Download URL not found. This is a most likely due to a transient condition and may be corrected by retrying.";
0 commit comments