youtube_explode/lib/src/exceptions/video_requires_purchase_exc...

15 lines
626 B
Dart

import '../videos/video_id.dart';
import 'video_unplayable_exception.dart';
/// Exception thrown when the requested video requires purchase.
class VideoRequiresPurchaseException extends VideoUnplayableException {
/// VideoId instance
final VideoId previewVideoId;
/// Initializes an instance of [VideoRequiresPurchaseException].
VideoRequiresPurchaseException.preview(VideoId videoId, this.previewVideoId)
: super('Video `$videoId` is unplayable because it requires purchase.\n'
'Streams are not available for this video.\n'
'There is a preview video available: `$previewVideoId`.');
}