Exception: Supabase::Auth::Errors::AuthPKCEError

Inherits:
AuthError
  • Object
show all
Defined in:
lib/supabase/auth/errors.rb

Overview

Raised for PKCE flow errors.

Instance Attribute Summary

Attributes inherited from AuthError

#code, #status

Instance Method Summary collapse

Methods inherited from AuthError

#to_h

Constructor Details

#initialize(message) ⇒ AuthPKCEError

Returns a new instance of AuthPKCEError.



110
111
112
# File 'lib/supabase/auth/errors.rb', line 110

def initialize(message)
  super(message, status: 400, code: "pkce_error")
end