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 in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Web 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 WritableStream.abort() call).
WebTransportError()Creates a new WebTransportError object instance.
Inherits properties from its parent, DOMException.
source Read only
Returns an enumerated value indicating the source of the error—can be either stream or session.
streamErrorCode Read only
Returns a number in the range 0-255 indicating the application protocol error code for this error, or null if one is not available.
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);
}
}
| Specification |
|---|
| WebTransport> # webtransporterror> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
WebTransportError |
97 | 97 | 114 | 83 | 18.4 | 97 | 114 | 68 | 18.4 | 18.0 | 97 | No |
WebTransportError |
97 | 97 | 114 | 83 | 18.4 | 97 | 114 | 68 | 18.4 | 18.0 | 97 | No |
source |
97 | 97 | 114 | 83 | 18.4 | 97 | 114 | 68 | 18.4 | 18.0 | 97 | No |
streamErrorCode |
97 | 97 | 114 | 83 | 18.4 | 97 | 114 | 68 | 18.4 | 18.0 | 97 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WebTransportError