Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FunctionsFetchError

Error thrown when the network request to an Edge Function fails.

@example
import { FunctionsFetchError } from '@supabase/functions-js'

throw new FunctionsFetchError({ requestId: 'abc123' })
class FunctionsFetchError extends FunctionsError {
constructor(context: any);
}

§Extends

§
FunctionsError
[src]

§Constructors

§
new FunctionsFetchError(context: any)
[src]