A custom error class for DID-related errors.

Hierarchy

  • Error
    • DidError

Constructors

  • Constructs an instance of DidError, a custom error class for handling DID-related errors.

    Parameters

    • code: DidErrorCode

      A DidErrorCode representing the specific type of error encountered.

    • message: string

      A human-readable description of the error.

    Returns DidError

Properties

cause?: unknown

A DidErrorCode representing the specific type of error encountered.

message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void