mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-09 08:47:31 +00:00
8 lines
215 B
Dart
8 lines
215 B
Dart
import 'package:spotify/spotify.dart';
|
|
|
|
class TrackNotFoundException implements Exception {
|
|
factory TrackNotFoundException(Track track) {
|
|
throw Exception("Failed to find any results for ${track.name}");
|
|
}
|
|
}
|