com.threerings.getdown.launcher.MultipleGetdownRunning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of getdown-launcher Show documentation
Show all versions of getdown-launcher Show documentation
The Getdown app updater/launcher
//
// 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");
}
}