youtube_explode/lib/src/exceptions/youtube_explode_exception.dart

9 lines
225 B
Dart

/// Parent class for domain exceptions thrown by [YoutubeExplode]
abstract class YoutubeExplodeException implements Exception {
/// Generic message.
final String message;
///
YoutubeExplodeException(this.message);
}