Merge branch 'develop' into trialMerge
[jalview.git] / getdown / src / getdown / launcher / src / main / java / com / threerings / getdown / launcher / MultipleGetdownRunning.java
diff --git a/getdown/src/getdown/launcher/src/main/java/com/threerings/getdown/launcher/MultipleGetdownRunning.java b/getdown/src/getdown/launcher/src/main/java/com/threerings/getdown/launcher/MultipleGetdownRunning.java
new file mode 100644 (file)
index 0000000..5ac7449
--- /dev/null
@@ -0,0 +1,20 @@
+//
+// Getdown - application installer, patcher and launcher
+// Copyright (C) 2004-2018 Getdown authors
+// https://github.com/threerings/getdown/blob/master/LICENSE
+
+package com.threerings.getdown.launcher;
+
+import java.io.IOException;
+
+/**
+ * Thrown when it's detected that multiple instances of the same getdown installer are running.
+ */
+public class MultipleGetdownRunning extends IOException
+{
+    public MultipleGetdownRunning ()
+    {
+        super("m.another_getdown_running");
+    }
+
+}