Any time an Error object is routed through a domain, a few extra fields are added to it.

Fields

domainThrown:Bool

A boolean indicating whether the error was thrown, emitted, or passed to a bound callback function.

domainEmitter:IEventEmitter

The event emitter that emitted an 'error' event with the error object.

domainBound:Function

The callback function which was bound to the domain, and passed an error as its first argument.

domain:Domain

The domain that first handled the error.