novx
    Preparing search index...

    Interface ErrorContext

    An ErrorContext covers possible context parameters that are known in case of an exception. contexts can be chained in order to cover different aspects of a call. ( e.g. command, http.call, ... )

    interface ErrorContext {
        $next?: ErrorContext;
        $type: string;
        [prop: string]: unknown;
    }

    Indexable

    • [prop: string]: unknown

      any possible properties of this context

    Index

    Properties

    Properties

    $next?: ErrorContext

    the chained ErrorContext

    $type: string

    the type of context