try {
if (Configuration.getConfiguration().get("n") == null) {
throw new Exception("Missing RSA key pair in server.ini; run marauroa.tools.GenerateKeys");
}
RSAKey key = new RSAKey(new BigInteger(Configuration.getConfiguration().get("n")),
new BigInteger(Configuration.getConfiguration().get("d")), new BigInteger(
Configuration.getConfiguration().get("e")));
gameMan = new GameServerManager(key, netMan, rpMan);
gameMan.start();