FunctionsError
import { FunctionsError } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";Base error for Supabase Edge Function invocations.
@example
import { FunctionsError } from '@supabase/functions-js'
throw new FunctionsError('Unexpected error invoking function', 'FunctionsError', {
requestId: 'abc123',
})
class FunctionsError extends Error {}
constructor(
message: string,
name?: string,
context?: any,
);context: any;