From f99eaafc67d722e95e276b9ee8eb1cb2d91b7a84 Mon Sep 17 00:00:00 2001 From: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com> Date: Mon, 9 Mar 2026 16:19:24 -0400 Subject: [PATCH] [PM-32123] feat: Propagate informative cookie redirect error message (#6622) --- .../bitwarden/network/exception/CookieRedirectException.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/network/src/main/kotlin/com/bitwarden/network/exception/CookieRedirectException.kt b/network/src/main/kotlin/com/bitwarden/network/exception/CookieRedirectException.kt index a295f89bc1..ba486961e9 100644 --- a/network/src/main/kotlin/com/bitwarden/network/exception/CookieRedirectException.kt +++ b/network/src/main/kotlin/com/bitwarden/network/exception/CookieRedirectException.kt @@ -13,4 +13,6 @@ import java.io.IOException */ class CookieRedirectException( val hostname: String, -) : IOException("HTTP 302 redirect detected for $hostname.") +) : IOException( + "Your request was interrupted because the app needed to re-authenticate. Please try again.", +)