WebTransportError: streamErrorCode property
The streamErrorCode
read-only property of the WebTransportError
interface returns a number in the range 0-255 indicating the application protocol error code for this error, or null
if one is not available.
Value
Examples
const url = "notaurl";
async function initTransport(url) {
try {
const transport = new WebTransport(url);
await transport.ready;
} catch (error) {
const msg = `Transport initialization failed.
Reason: ${error.message}.
Source: ${error.source}.
Error code: ${error.streamErrorCode}.`;
console.log(msg);
}
}
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
streamErrorCode |
97 |
97 |
114 |
No |
83 |
No |
97 |
97 |
114 |
68 |
No |
18.0 |
See also