Exception: Supabase::Auth::Errors::AuthRetryableError
- Inherits:
-
CustomAuthError
- Object
- StandardError
- AuthError
- CustomAuthError
- Supabase::Auth::Errors::AuthRetryableError
- Defined in:
- lib/supabase/auth/errors.rb
Overview
Raised for retryable errors (network issues, 502/503/504).
Instance Attribute Summary
Attributes inherited from CustomAuthError
Attributes inherited from AuthError
Instance Method Summary collapse
-
#initialize(message, status: 0) ⇒ AuthRetryableError
constructor
A new instance of AuthRetryableError.
Methods inherited from CustomAuthError
Methods inherited from AuthError
Constructor Details
#initialize(message, status: 0) ⇒ AuthRetryableError
Returns a new instance of AuthRetryableError.
82 83 84 |
# File 'lib/supabase/auth/errors.rb', line 82 def initialize(, status: 0) super(, name: "AuthRetryableError", status: status) end |