WebTransportError
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.
Note: This feature is available inWeb Workers.
TheWebTransportError interface of theWebTransport API represents an error related to the API, which can arise from server errors, network connection problems, or client-initiated abort operations (for example, arising from aWritableStream.abort() call).
In this article
Constructor
WebTransportError()Creates a new
WebTransportErrorobject instance.
Instance properties
Inherits properties from its parent,DOMException.
sourceRead onlyReturns an enumerated value indicating the source of the error—can be either
streamorsession.streamErrorCodeRead onlyReturns a number in the range 0-255 indicating the application protocol error code for this error, or
nullif one is not available.
Examples
const url = "not-a-url";async function initTransport(url) { try { // Initialize transport connection const transport = new WebTransport(url); // The connection can be used once ready fulfills await transport.ready; // … } catch (error) { const msg = `Transport initialization failed. Reason: ${error.message}. Source: ${error.source}. Error code: ${error.streamErrorCode}.`; console.log(msg); }}Specifications
| Specification |
|---|
| WebTransport> # webtransporterror> |