summaryrefslogtreecommitdiffstats
path: root/lib/music_methods/mpd.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/music_methods/mpd.dart')
-rw-r--r--lib/music_methods/mpd.dart20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/music_methods/mpd.dart b/lib/music_methods/mpd.dart
new file mode 100644
index 0000000..124a5d4
--- /dev/null
+++ b/lib/music_methods/mpd.dart
@@ -0,0 +1,20 @@
+// SPDX-License-Identifier: Apache-2.0
+library MPD;
+
+import "dart:async";
+import "dart:io";
+
+
+
+
+/**
+ * An error for MPD.
+ */
+class MPDError extends Error {
+ String msg;
+ MPDError(this.msg) : super();
+
+ String toString() {
+ return "MPD Error: $msg";
+ }
+} \ No newline at end of file