Skip to content

Class: FanbookApiError

Fanbook API 请求错误。

Hierarchy

  • Error

    FanbookApiError

Constructors

constructor

new FanbookApiError(code?, description?, request?, response?, error?)

Parameters

NameTypeDescription
code?number错误码。
description?string错误信息。
request?AxiosRequestConfig<any>请求对象。
response?AxiosResponse<any, any>响应对象。
error?unknownaxios 抛出的错误。

Overrides

Error.constructor

Defined in

src/error.ts:5

Properties

code

Optional code: number

错误码。

Defined in

src/error.ts:7


description

Optional description: string

错误信息。

Defined in

src/error.ts:9


error

Optional error: unknown

axios 抛出的错误。

Defined in

src/error.ts:15


message

message: string

Inherited from

Error.message

Defined in

node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es5.d.ts:1068


name

name: string

Inherited from

Error.name

Defined in

node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es5.d.ts:1067


request

Optional request: AxiosRequestConfig<any>

请求对象。

Defined in

src/error.ts:11


response

Optional response: AxiosResponse<any, any>

响应对象。

Defined in

src/error.ts:13


stack

Optional stack: string

Inherited from

Error.stack

Defined in

node_modules/.pnpm/typescript@5.1.6/node_modules/typescript/lib/lib.es5.d.ts:1069


prepareStackTrace

Static Optional prepareStackTrace: (err: Error, stackTraces: CallSite[]) => any

Type declaration

▸ (err, stackTraces): any

Optional override for formatting stack traces

Parameters
NameType
errError
stackTracesCallSite[]
Returns

any

See

https://v8.dev/docs/stack-trace-api#customizing-stack-traces

Inherited from

Error.prepareStackTrace

Defined in

node_modules/.pnpm/@types+node@18.19.3/node_modules/@types/node/globals.d.ts:27


stackTraceLimit

Static stackTraceLimit: number

Inherited from

Error.stackTraceLimit

Defined in

node_modules/.pnpm/@types+node@18.19.3/node_modules/@types/node/globals.d.ts:29

Methods

captureStackTrace

Static captureStackTrace(targetObject, constructorOpt?): void

Create .stack property on a target object

Parameters

NameType
targetObjectobject
constructorOpt?Function

Returns

void

Inherited from

Error.captureStackTrace

Defined in

node_modules/.pnpm/@types+node@18.19.3/node_modules/@types/node/globals.d.ts:20

Released under the MIT License.