summaryrefslogtreecommitdiff
path: root/ts43authentication/src/com/android
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-10-19 22:53:15 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-10-19 22:53:15 +0000
commit902be353b5e7a5f9b26d1fabfe4e21df5e82b1c2 (patch)
tree4db0d0509cc611f60519f1d5b5c1e3e6fe350399 /ts43authentication/src/com/android
parent2e354e00332b73e5cbf3a01d6aabf57dc6a17dec (diff)
parent527c4ef5bbd0e848f5089d7354a43a5c21d7982a (diff)
downloadgsma_services-902be353b5e7a5f9b26d1fabfe4e21df5e82b1c2.tar.gz
Merge "Make AuthenticationException constructor public" into main
Diffstat (limited to 'ts43authentication/src/com/android')
-rw-r--r--ts43authentication/src/com/android/libraries/ts43authentication/AuthenticationException.java12
1 files changed, 10 insertions, 2 deletions
diff --git a/ts43authentication/src/com/android/libraries/ts43authentication/AuthenticationException.java b/ts43authentication/src/com/android/libraries/ts43authentication/AuthenticationException.java
index 707a7bf..24dd7db 100644
--- a/ts43authentication/src/com/android/libraries/ts43authentication/AuthenticationException.java
+++ b/ts43authentication/src/com/android/libraries/ts43authentication/AuthenticationException.java
@@ -122,7 +122,15 @@ public class AuthenticationException extends Exception {
private final int mHttpStatusCode;
private final String mRetryAfter;
- private AuthenticationException(@AuthenticationError int error, int httpStatusCode,
+ /**
+ * Create an AuthenticationException by setting all fields manually.
+ *
+ * @param error The authentication error.
+ * @param httpStatusCode The HTTP status code.
+ * @param retryAfter The {@code Retry-After} header from the HTTP response.
+ * @param message The detailed message with more information about the exception.
+ */
+ public AuthenticationException(@AuthenticationError int error, int httpStatusCode,
String retryAfter, String message) {
super(message);
mError = error;
@@ -134,7 +142,7 @@ public class AuthenticationException extends Exception {
* Create an AuthenticationException for the given {@link AuthenticationError}.
*
* @param error The authentication error.
- * @param message The detail message with more information about the exception.
+ * @param message The detailed message with more information about the exception.
*/
public AuthenticationException(int error, String message) {
this(error, HTTP_STATUS_CODE_UNSPECIFIED, RETRY_AFTER_UNSPECIFIED, message);