Exception: Supabase::Auth::Errors::AuthInvalidCredentialsError
- Inherits:
-
CustomAuthError
- Object
- StandardError
- AuthError
- CustomAuthError
- Supabase::Auth::Errors::AuthInvalidCredentialsError
- Defined in:
- lib/supabase/auth/errors.rb
Overview
Raised when credentials are missing or invalid.
Instance Attribute Summary
Attributes inherited from CustomAuthError
Attributes inherited from AuthError
Instance Method Summary collapse
-
#initialize(message) ⇒ AuthInvalidCredentialsError
constructor
A new instance of AuthInvalidCredentialsError.
Methods inherited from CustomAuthError
Methods inherited from AuthError
Constructor Details
#initialize(message) ⇒ AuthInvalidCredentialsError
Returns a new instance of AuthInvalidCredentialsError.
61 62 63 |
# File 'lib/supabase/auth/errors.rb', line 61 def initialize() super(, name: "AuthInvalidCredentialsError", status: 400) end |