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.", +)