DownloadError
interface DownloadError {
message: string;
name: string;
url: string;
}Source: Downloader.ts:24
Represents a failed segment or playlist download attempt.
Properties
message: string
The descriptive error message provided by the network client or parser.
name: string
The error class name (e.g., 'HTTPError', 'TimeoutError').
url: string
The full URL of the resource that failed to download.