Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Video
    • Overview
    • Control
      • Overview
        • Getting started
          • Environment
          • PictureInPictureController
          • VideoSurface
          • YaPlayer
            • PlayerError
            • Configuration
            • ClientUserId
            • ContentIdEndpoint
            • From
            • PlaybackConfig
            • PlaybackSpeed
            • PlayerStatus
            • QuasiEndpoint
            • Time
            • VideoType
    • Browser autoplay policy
  • Access management
  • Pricing policy
  • Audit Trails events
  • Release notes

In this article:

  • Contents
  • PlayerError
  • Discussion
  • Inheritance
  • Properties
  • Examples
  • AnyPlayerError
  • Inheritance
  • Properties
  • PlayerErrorDetails
  • Properties
  • PlayerErrorType
  • Inheritance
  • Cases
  1. Video Player
  2. SDK
  3. iOS
  4. CloudVideoPlayer
  5. Structs
  6. PlayerError

PlayerError

Written by
Yandex Cloud
Updated at May 28, 2026
  • Contents
  • PlayerError
    • Discussion
    • Inheritance
    • Properties
    • Examples
  • AnyPlayerError
    • Inheritance
    • Properties
  • PlayerErrorDetails
    • Properties
  • PlayerErrorType
    • Inheritance
    • Cases

ContentsContents

  • PlayerError
  • AnyPlayerError
  • PlayerErrorDetails
  • PlayerErrorType

PlayerErrorPlayerError

public protocol PlayerError: Error

Player error protocol.

DiscussionDiscussion

All errors occurring in the player conform to this protocol. You can get the error stream via YaPlayer/errorDidDetected(queue:).

InheritanceInheritance

  • Error

PropertiesProperties

Name Type Description
type PlayerErrorType Error type: Determines the severity.
details PlayerErrorDetails Detailed error information

ExamplesExamples

player.errorDidDetected()
  .sink { error in
    if error.type == .fatal {
      showErrorScreen()
    }
  }
  .store(in: &cancellables)

AnyPlayerErrorAnyPlayerError

public struct AnyPlayerError: PlayerError

Specific implementation of PlayerError returned by the player.

InheritanceInheritance

  • PlayerError

PropertiesProperties

Name Type Description
type PlayerErrorType Error type.
details PlayerErrorDetails Detailed error information.

PlayerErrorDetailsPlayerErrorDetails

public struct PlayerErrorDetails

Detailed player error information.

PropertiesProperties

Name Type Description
code Int Error code
domain String Error domain
description String Error description
userInfo [String: Any] Additional error information

PlayerErrorTypePlayerErrorType

public enum PlayerErrorType: String, Encodable

Player error type (severity).

InheritanceInheritance

  • String
  • Encodable

CasesCases

Case Description
error Non-critical error: Playback may continue.
fatal Fatal error: Playback is impossible.

Was the article helpful?

Previous
YaPlayer
Next
Configuration
© 2026 Direct Cursus Technology L.L.C.