youtube_explode/lib/src/exceptions/youtube_explode_exception.dart

8 lines
224 B
Dart
Raw Normal View History

2020-04-18 23:22:13 +02:00
/// Parent class for domain exceptions thrown by [YoutubeExplode]
abstract class YoutubeExplodeException implements Exception {
2020-06-05 20:08:04 +02:00
/// Generic message.
2020-04-18 23:22:13 +02:00
final String message;
2020-06-03 23:02:21 +02:00
2020-06-05 20:08:04 +02:00
///
2020-04-18 23:22:13 +02:00
YoutubeExplodeException(this.message);
2020-12-30 15:00:11 +01:00
}