Exception: Supabase::Auth::Errors::AuthRetryableError

Inherits:
CustomAuthError show all
Defined in:
lib/supabase/auth/errors.rb

Overview

Raised for retryable errors (network issues, 502/503/504).

Instance Attribute Summary

Attributes inherited from CustomAuthError

#name

Attributes inherited from AuthError

#code, #status

Instance Method Summary collapse

Methods inherited from CustomAuthError

#to_h

Methods inherited from AuthError

#to_h

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(message, status: 0)
  super(message, name: "AuthRetryableError", status: status)
end