FunctionsError
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;