Extended by
MediaErrorImpl
Constructors
new MediaError()
new MediaError(code, message): MediaError
Parameters
code
number
message
string
Returns
MediaErrorProperties
code
readonly code: number
Returns the current error’s error code, from the list below.
For additional information, see
https://html.spec.whatwg.org/multipage/media.html#concept-mediaerror-code.
message
readonly message: string
Returns a specific informative diagnostic message about the error condition encountered.
For additional information, see
https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-message.
MEDIA_ERR_ABORTED
static readonly MEDIA_ERR_ABORTED: 1 = 1
The fetching process for the media resource was aborted by the platform at the user’s request.
For additional information, see
https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-media_err_aborted.
MEDIA_ERR_NETWORK
static readonly MEDIA_ERR_NETWORK: 2 = 2
A network error of some description caused the platform to stop fetching the media resource,
after the resource was established to be usable.
https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-media_err_network.
MEDIA_ERR_DECODE
static readonly MEDIA_ERR_DECODE: 3 = 3
An error of some description occurred while decoding the media resource,
after the resource was established to be usable.
For additional information, see
https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-media_err_decode.
MEDIA_ERR_SRC_NOT_SUPPORTED
static readonly MEDIA_ERR_SRC_NOT_SUPPORTED: 4 = 4
The media resource indicated by the src attribute or assigned media provider object was not suitable.
For additional information, see
https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-media_err_src_not_supported.

