Skip to main content
Version: 0.17

Class: Exception

Base exception class.

Hierarchy​

Constructors​

constructor​

• new Exception(message?)

Parameters​

NameType
message?string

Inherited from​

Error.constructor

Defined in​

node_modules/typescript/lib/lib.es5.d.ts:1028

Properties​

message​

• message: string

Inherited from​

Error.message

Defined in​

node_modules/typescript/lib/lib.es5.d.ts:1023


name​

• name: string

Inherited from​

Error.name

Defined in​

node_modules/typescript/lib/lib.es5.d.ts:1022


stack​

• Optional stack: string

Inherited from​

Error.stack

Defined in​

node_modules/typescript/lib/lib.es5.d.ts:1024


stackTraceLimit​

â–ª Static stackTraceLimit: number

Inherited from​

Error.stackTraceLimit

Defined in​

node_modules/@types/node/globals.d.ts:13

Accessors​

description​

• get description(): string

A synonym for message.

deprecated since v0.17, access message instead

Returns​

string

Defined in​

packages/@orbit/core/src/exception.ts:12

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/@types/node/globals.d.ts:4


prepareStackTrace​

â–¸ Static Optional prepareStackTrace(err, stackTraces): any

Optional override for formatting stack traces

see https://github.com/v8/v8/wiki/Stack%20Trace%20API#customizing-stack-traces

Parameters​

NameType
errError
stackTracesCallSite[]

Returns​

any

Inherited from​

Error.prepareStackTrace

Defined in​

node_modules/@types/node/globals.d.ts:11