AuthError
Base error thrown by Supabase Auth helpers.
@example
import { AuthError } from '@supabase/auth-js'
throw new AuthError('Unexpected auth error', 500, 'unexpected')
class AuthError extends Error {}
§Properties
§
Error code associated with the error. Most errors coming from HTTP responses will have a code, though some errors that occur before a response is received will not have one present. In that case AuthError.status will also be undefined.