Exception: Supabase::Auth::Errors::AuthInvalidJwtError
- Inherits:
-
CustomAuthError
- Object
- StandardError
- AuthError
- CustomAuthError
- Supabase::Auth::Errors::AuthInvalidJwtError
- Defined in:
- lib/supabase/auth/errors.rb
Overview
Raised when a JWT is invalid or malformed.
Instance Attribute Summary
Attributes inherited from CustomAuthError
Attributes inherited from AuthError
Instance Method Summary collapse
-
#initialize(message) ⇒ AuthInvalidJwtError
constructor
A new instance of AuthInvalidJwtError.
Methods inherited from CustomAuthError
Methods inherited from AuthError
Constructor Details
#initialize(message) ⇒ AuthInvalidJwtError
Returns a new instance of AuthInvalidJwtError.
103 104 105 |
# File 'lib/supabase/auth/errors.rb', line 103 def initialize() super(, name: "AuthInvalidJwtError", status: 400, code: "invalid_jwt") end |