node-datachannel
Version:
WebRTC For Node.js and Electron. libdatachannel node bindings.
72 lines (58 loc) • 2.18 kB
text/typescript
export default class RTCError extends DOMException implements globalThis.RTCError {
constructor(init: globalThis.RTCErrorInit, message?: string) {
super(message, 'OperationError');
if (!init || !init.errorDetail) throw new TypeError('Cannot construct RTCError, errorDetail is required');
if (
[
'data-channel-failure',
'dtls-failure',
'fingerprint-failure',
'hardware-encoder-error',
'hardware-encoder-not-available',
'sctp-failure',
'sdp-syntax-error',
].indexOf(init.errorDetail) === -1
)
throw new TypeError('Cannot construct RTCError, errorDetail is invalid');
this.
this.
this.
this.
this.
}
get errorDetail(): globalThis.RTCErrorDetailType {
return this.
}
set errorDetail(_value) {
throw new TypeError('Cannot set errorDetail, it is read-only');
}
get receivedAlert(): number | null {
return this.
}
set receivedAlert(_value) {
throw new TypeError('Cannot set receivedAlert, it is read-only');
}
get sctpCauseCode(): number | null {
return this.
}
set sctpCauseCode(_value) {
throw new TypeError('Cannot set sctpCauseCode, it is read-only');
}
get sdpLineNumber(): number | null {
return this.
}
set sdpLineNumber(_value) {
throw new TypeError('Cannot set sdpLineNumber, it is read-only');
}
get sentAlert(): number | null {
return this.
}
set sentAlert(_value) {
throw new TypeError('Cannot set sentAlert, it is read-only');
}
}