AuthError
import { AuthError } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";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;