Skip to main content
The error the SDK and the host raise when a call cannot be served at all.

Remarks

The SDK throws it for a mount outside the host (TAP_OUTSIDE_HOST), a collection or procedure the manifest does not declare (TAP_UNKNOWN_COLLECTION, TAP_UNKNOWN_PROCEDURE), a missing portal or query client, a token the server rejected, and a misused testing helper. The host turns a refused read or write into TAP_SCOPE_MISSING. Branch on code, which is stable; the message is prose and changes. An error your own server raised is a TapServerError instead.

Example

Extends

  • Error

Constructors

Constructor

Parameters

code
TapErrorCode
message
string

Returns

TapError

Overrides

Properties

code


message

Inherited from


name

Inherited from


stack?

Inherited from


stackTraceLimit

The Error.stackTraceLimit property specifies the number of stack frames collected by a stack trace (whether generated by new Error().stack or Error.captureStackTrace(obj)). The default value is 10 but may be set to any valid JavaScript number. Changes will affect any stack trace captured after the value has been changed. If set to a non-number value, or set to a negative number, stack traces will not capture any frames.

Inherited from

Methods

captureStackTrace()

Creates a .stack property on targetObject, which when accessed returns a string representing the location in the code at which Error.captureStackTrace() was called.
The first line of the trace will be prefixed with ${myObject.name}: ${myObject.message}. The optional constructorOpt argument accepts a function. If given, all frames above constructorOpt, including constructorOpt, will be omitted from the generated stack trace. The constructorOpt argument is useful for hiding implementation details of error generation from the user. For instance:

Parameters

targetObject
object
constructorOpt?
Function

Returns

void

Inherited from


is()

Narrows an unknown value to a TapError, by name and by a code it recognises, so it holds across module instances.

Parameters

value
unknown

Returns

value is TapError

prepareStackTrace()

Parameters

err
Error
stackTraces
CallSite[]

Returns

any

See

https://v8.dev/docs/stack-trace-api#customizing-stack-traces

Inherited from