* Initializes monitor.
*/
private void initMonitor() {
try {
if (this.configuration.isStartMonitor()) {
MonitorStarter starter = new MonitorStarter(this);
starter.start();
}
} catch (RuntimeException e) {
getGUI().getErrorWindow().error(ErrorMessages.MONITOR_SUBSCRIPTION_ERROR, e);
} catch (Error e) {
getGUI().getErrorWindow().error(ErrorMessages.UNEXPECTED_ERROR, e);