JAL-3130 adapted getdown src. attempt 2. first attempt failed due to cp'ed .git files
[jalview.git] / getdown / src / getdown / launcher / src / main / java / com / threerings / getdown / launcher / MultipleGetdownRunning.java
1 //
2 // Getdown - application installer, patcher and launcher
3 // Copyright (C) 2004-2018 Getdown authors
4 // https://github.com/threerings/getdown/blob/master/LICENSE
5
6 package com.threerings.getdown.launcher;
7
8 import java.io.IOException;
9
10 /**
11  * Thrown when it's detected that multiple instances of the same getdown installer are running.
12  */
13 public class MultipleGetdownRunning extends IOException
14 {
15     public MultipleGetdownRunning ()
16     {
17         super("m.another_getdown_running");
18     }
19
20 }