Interface MediaError

Thrown when a media error occurs.

interface MediaError {
    cause?: string;
    code: MediaErrorCode;
    systemCode?: number;
}

Hierarchy

Properties

cause?: string

The cause of the error, if any.

The code of the error.

systemCode?: number

The key system specific error code, if any.