System.out.println("Autorization failed: " +
AUTH_FAILED_MESSAGES[authorization - 1]);
System.exit(authorization);
}
KeepAliveMonitor keepAliveMonitor = new KeepAliveMonitor(this);
Thread t = new Thread(keepAliveMonitor);
t.setDaemon(true);
t.start();
} catch (ConnectException e) {