AuthPKCEGrantCodeExchangeError
Error thrown during PKCE code exchanges.
@example
import { AuthPKCEGrantCodeExchangeError } from '@supabase/auth-js'
throw new AuthPKCEGrantCodeExchangeError('PKCE exchange failed')
class AuthPKCEGrantCodeExchangeError extends CustomAuthError { }
constructor(message: string, details?: {
error: string;
code: string;
} | null);details: {
error: string;
code: string;
} | null;toJSON(): {
name: string;
message: string;
status: number;
details: {
};error: string;
code: string;
} | null;