Integer.parseInt("Not an integer...");
} catch (NumberFormatException e) {
guiBuilder.showError("showError()", "showError w/ Throwable Test", e);
}
guiBuilder.showInformation("showInformation()", "showInformation Test", "showInformation Details");
confirm = guiBuilder.showQuestion("showQuestion()", "showQuestion Test", "showQuestion Details");
log.log(LogService.LOG_INFO, "Yes? " + (confirm ? "Yes" : "No"));
guiBuilder.showWarning("showWarning()", "showWarning Test", "showWarning Details");
}