youtube_explode/lib/src/exceptions/youtube_explode_exception.dart

6 lines
195 B
Dart

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