Interface ContentProtectionErrorObject

An error related to content protection.

interface ContentProtectionErrorObject {
    errorCode: string;
    errorMessage: string;
    response?: string;
    status?: number;
    statusText?: string;
    systemCode?: number;
    url?: string;
}

Properties

errorCode: string

The error code.

errorMessage: string

The error message.

response?: string

The body contained in the HTTP response.

Remarks

Only available for certificate or license request errors.

status?: number

The status code from the HTTP response.

Remarks

Only available for certificate or license request errors.

statusText?: string

The status text from the HTTP response.

Remarks

Only available for certificate or license request errors.

systemCode?: number

The internal error code from the CDM.

Remarks

Only available for internal CDM errors.

url?: string

The URL that was used in the request.

Remarks

Only available for certificate or license request errors.