mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
13 lines
291 B
Dart
13 lines
291 B
Dart
import 'package:spotube/models/playback/track_sources.dart';
|
|
|
|
class TrackNotFoundError extends Error {
|
|
final TrackSourceQuery track;
|
|
|
|
TrackNotFoundError(this.track);
|
|
|
|
@override
|
|
String toString() {
|
|
return '[TrackNotFoundError] ${track.title} - ${track.artists.join(", ")}';
|
|
}
|
|
}
|