[PM-32123] feat: Propagate informative cookie redirect error message (#6622)

This commit is contained in:
Patrick Honkonen
2026-03-09 16:19:24 -04:00
committed by GitHub
parent 77d541d033
commit f99eaafc67

View File

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