FetchError
Overview
Generic error class for fetch errors.
Properties
cause
Type: unknown
Source: node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2022.error.d.ts:24
message
Type: string
Source: node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es5.d.ts:1077
name
Type: string
Source: client/lib/utils/errors.js:60
response
The response object associated with the error.
Type: Response
Source: client/lib/utils/errors.js:66
responseData
The data returned in the response. Decoded if JSON, otherwise a string.
Type: any
Source: client/lib/utils/errors.js:71
stack
Type: string
Source: node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es5.d.ts:1078
stackTraceLimit
The Error.stackTraceLimit property specifies the number of stack frames collected by a stack trace (whether generated by new Error().stack or Error.captureStackTrace(obj)).
The default value is 10 but may be set to any valid JavaScript number. Changes will affect any stack trace captured after the value has been changed.
If set to a non-number value, or set to a negative number, stack traces will not capture any frames.
Type: number
Source: node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/globals.d.ts:68
Methods
- constructor - Creates an instance of FetchError.
- captureStackTrace - Creates a
.stackproperty ontargetObject, which when accessed returns a string representing the location in the code at whichError.captureStackTrace()was called. - prepareStackTrace
Source
client/lib/utils/errors.js:36