Class DevOpsAPIErrorAbstract

An abstract class representing some exception that occurred related to the DevOps API. This is the base class for all DevOps API errors, and will never be thrown directly.

Useful for instanceof checks.

Hierarchy (view full)

Constructors

  • Parameters

    • Optional message: string

    Returns DevOpsAPIError

Properties

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