mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
13 lines
306 B
Dart
13 lines
306 B
Dart
class MetadataPluginException implements Exception {
|
|
final String exceptionType;
|
|
final String message;
|
|
|
|
MetadataPluginException.noDefaultPlugin(this.message)
|
|
: exceptionType = "NoDefault";
|
|
|
|
@override
|
|
String toString() {
|
|
return "${exceptionType}MetadataPluginException: $message";
|
|
}
|
|
}
|