AuthUnknownError
import { AuthUnknownError } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";Wraps non-standard errors so callers can inspect the root cause.
@example
import { AuthUnknownError } from '@supabase/auth-js'
try {
await someAuthCall()
} catch (err) {
throw new AuthUnknownError('Auth failed', err)
}
class AuthUnknownError extends AuthError {}
constructor(message: string, originalError: unknown);
originalError: unknown;