* @throws RuntimeException if there was a problem
* creating the new Application object
*/
static public GuiApplication create()
throws RuntimeException {
GuiApplication app;
String appClassName =
System.getProperty("org.nasutekds.quicksetup.Application.class");
if (appClassName != null) {
Class<?> appClass = null;
try {