|
From: <tre...@us...> - 2008-01-13 21:27:53
|
Revision: 683
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=683&view=rev
Author: trevorolio
Date: 2008-01-13 13:27:58 -0800 (Sun, 13 Jan 2008)
Log Message:
-----------
Changed the "Unfortunately, I could not connect to server" error message (which was often unrelated to server connections) to "Unfortunately, I experienced a fatal error: <exception message>" so that people can give us a bit more information when things go awry.
Modified Paths:
--------------
maven/trunk/ogoglio-viewer-applet/src/main/java/com/ogoglio/viewer/applet/ViewerApplet.java
Modified: maven/trunk/ogoglio-viewer-applet/src/main/java/com/ogoglio/viewer/applet/ViewerApplet.java
===================================================================
--- maven/trunk/ogoglio-viewer-applet/src/main/java/com/ogoglio/viewer/applet/ViewerApplet.java 2008-01-13 00:29:30 UTC (rev 682)
+++ maven/trunk/ogoglio-viewer-applet/src/main/java/com/ogoglio/viewer/applet/ViewerApplet.java 2008-01-13 21:27:58 UTC (rev 683)
@@ -176,7 +176,7 @@
e.printStackTrace();
removeAll();
validate();
- add(new ErrorPanel("Unfortunately, I couldn't connect to the server."), BorderLayout.CENTER);
+ add(new ErrorPanel("Unfortunately, I experienced a fatal error: " + e), BorderLayout.CENTER);
}
validate();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|