Options
All
  • Public
  • Public/Protected
  • All
Menu

Class AuraError

Utility class wrapping Error with custom information

Facilitates user-friendly 'nice' error handling, with custom names and comprehensive messages

Hierarchy

  • Error
    • AuraError

Index

Constructors

  • new AuraError(config: { class: string; message: string; method: string }): AuraError
  • Constructor. Construct a useful error message, and set the Error's name

    Parameters

    • config: { class: string; message: string; method: string }

      the information to compile into the Error

      • class: string
      • message: string
      • method: string

    Returns AuraError

Properties

message: string
name: string
stack?: string
prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration

stackTraceLimit: number

Methods

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

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void