Skip to content

Latest commit

 

History

History
163 lines (88 loc) · 2.71 KB

PanicError.md

File metadata and controls

163 lines (88 loc) · 2.71 KB

RedisSMQ Common Library / Docs / API Reference / PanicError

Class: PanicError

Hierarchy

Table of contents

Constructors

Properties

Accessors

Methods

Constructors

constructor

new PanicError(message?): PanicError

Parameters

Name Type
message? string

Returns

PanicError

Inherited from

RedisSMQError.constructor

Properties

cause

Optional cause: unknown

Inherited from

RedisSMQError.cause


message

message: string

Inherited from

RedisSMQError.message


stack

Optional stack: string

Inherited from

RedisSMQError.stack


prepareStackTrace

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

Optional override for formatting stack traces

See

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

Type declaration

▸ (err, stackTraces): any

Parameters
Name Type
err Error
stackTraces CallSite[]
Returns

any

Inherited from

RedisSMQError.prepareStackTrace


stackTraceLimit

Static stackTraceLimit: number

Inherited from

RedisSMQError.stackTraceLimit

Accessors

name

get name(): string

Returns

string

Inherited from

RedisSMQError.name

Methods

captureStackTrace

captureStackTrace(targetObject, constructorOpt?): void

Create .stack property on a target object

Parameters

Name Type
targetObject object
constructorOpt? Function

Returns

void

Inherited from

RedisSMQError.captureStackTrace