youtube_explode/lib/src/exceptions/youtube_explode_exception.dart

12 lines
288 B
Dart

/// Parent class for domain exceptions thrown by [YoutubeExplode]
abstract class YoutubeExplodeException implements Exception {
/// Generic message.
final String message;
///
YoutubeExplodeException(this.message);
@override
String toString() => '$runtimeType: $message}';
}