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 {}
constructor(
message: string,
status?: number,
code?: string,
);protected __isAuthError: boolean;
code: ErrorCode | (string & {}) | undefined;
status: number | undefined;