AuthApiError
Error returned directly from the GoTrue REST API.
@example
import { AuthApiError } from '@supabase/auth-js'
throw new AuthApiError('Invalid credentials', 400, 'invalid_credentials')
class AuthApiError extends AuthError {}
constructor(
message: string,
status: number,
code: string | undefined,
);status: number;