web api interface
WebTransportError
Secure context Available in workers
The WebTransportError interface of the WebTransport 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 a abort() call).
Constructor
WebTransportError()- : Creates a new
WebTransportErrorobject instance.
- : Creates a new
Instance properties
Inherits properties from its parent, DOMException.
sourceRead only- : Returns an enumerated value indicating the source of the error—can be either
streamorsession.
- : Returns an enumerated value indicating the source of the error—can be either
streamErrorCodeRead only- : Returns a number in the range 0-255 indicating the application protocol error code for this error, or
nullif one is not available.
- : Returns a number in the range 0-255 indicating the application protocol error code for this error, or
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
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.