interface RTCError {
    ABORT_ERR: 20;
    cause?: unknown;
    code: number;
    DATA_CLONE_ERR: 25;
    DOMSTRING_SIZE_ERR: 2;
    errorDetail: RTCErrorDetailType;
    HIERARCHY_REQUEST_ERR: 3;
    INDEX_SIZE_ERR: 1;
    INUSE_ATTRIBUTE_ERR: 10;
    INVALID_ACCESS_ERR: 15;
    INVALID_CHARACTER_ERR: 5;
    INVALID_MODIFICATION_ERR: 13;
    INVALID_NODE_TYPE_ERR: 24;
    INVALID_STATE_ERR: 11;
    message: string;
    name: string;
    NAMESPACE_ERR: 14;
    NETWORK_ERR: 19;
    NO_DATA_ALLOWED_ERR: 6;
    NO_MODIFICATION_ALLOWED_ERR: 7;
    NOT_FOUND_ERR: 8;
    NOT_SUPPORTED_ERR: 9;
    QUOTA_EXCEEDED_ERR: 22;
    receivedAlert: null | number;
    sctpCauseCode: null | number;
    sdpLineNumber: null | number;
    SECURITY_ERR: 18;
    sentAlert: null | number;
    stack?: string;
    SYNTAX_ERR: 12;
    TIMEOUT_ERR: 23;
    TYPE_MISMATCH_ERR: 17;
    URL_MISMATCH_ERR: 21;
    VALIDATION_ERR: 16;
    WRONG_DOCUMENT_ERR: 4;
}

Hierarchy

  • DOMException
    • RTCError

Properties

ABORT_ERR
cause?: unknown
code: number

MDN Reference

DATA_CLONE_ERR
DOMSTRING_SIZE_ERR
errorDetail: RTCErrorDetailType
HIERARCHY_REQUEST_ERR
INDEX_SIZE_ERR
INUSE_ATTRIBUTE_ERR
INVALID_ACCESS_ERR
INVALID_CHARACTER_ERR
INVALID_MODIFICATION_ERR
INVALID_NODE_TYPE_ERR
INVALID_STATE_ERR
message: string
name: string
NAMESPACE_ERR
NETWORK_ERR
NO_DATA_ALLOWED_ERR
NO_MODIFICATION_ALLOWED_ERR
NOT_FOUND_ERR
NOT_SUPPORTED_ERR
QUOTA_EXCEEDED_ERR
receivedAlert: null | number
sctpCauseCode: null | number
sdpLineNumber: null | number
SECURITY_ERR
sentAlert: null | number
stack?: string
SYNTAX_ERR
TIMEOUT_ERR
TYPE_MISMATCH_ERR
URL_MISMATCH_ERR
VALIDATION_ERR
WRONG_DOCUMENT_ERR