package silentium.commons.utils;
/**
* Class that contains exit codes for server
*
* @author SoulKeeper
*/
public final class ExitCode {
/**
* Indicates that server successfully finished it's work
*/
public static final int CODE_NORMAL = 0;
/**
* Indicates that server successfully finished it's work and should be restarted
*/
public static final int CODE_RESTART = 2;
/**
* Indicates that error happened in server and it's need to shutdown.<br>
* Shit happens :(
*/
public static final int CODE_ERROR = 1;
}