VideoUnavailableException.unavailable constructor

VideoUnavailableException.unavailable(
  1. VideoId videoId
)

Initializes an instance of VideoUnplayableException with a VideoId

Implementation

VideoUnavailableException.unavailable(VideoId videoId)
    : super("Video '$videoId' is unavailable\n"
          "In most cases, this error indicates that the video doesn't exist, " // ignore: lines_longer_than_80_chars
          'is private, or has been taken down.\n'
          'If you can however open this video in your browser in incognito mode, ' // ignore: lines_longer_than_80_chars
          'it most likely means that YouTube changed something, which broke this library.\n' // ignore: lines_longer_than_80_chars
          'Please report this issue on GitHub in that case.');