Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ErrorConstructor

Hierarchy

  • ErrorConstructor

Callable

  • __call(message?: undefined | string): Error
  • Parameters

    • Optional message: undefined | string

    Returns Error

Index

Constructors

constructor

  • new ErrorConstructor(message?: undefined | string): Error
  • Parameters

    • Optional message: undefined | string

    Returns Error

Properties

Optional prepareStackTrace

prepareStackTrace: undefined | ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

see

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

prototype

prototype: Error

stackTraceLimit

stackTraceLimit: number

Methods

captureStackTrace

  • captureStackTrace(targetObject: object, constructorOpt?: Function): void
  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void