|
From: <pe...@us...> - 2003-12-19 18:02:30
|
Update of /cvsroot/neuclear/neuclear-id-sample/src/java/org/neuclear/id/sample
In directory sc8-pr-cvs1:/tmp/cvs-serv5078/src/java/org/neuclear/id/sample
Modified Files:
SendMessageServlet.java
Log Message:
Revamped a lot of exception handling throughout the framework, it has been simplified in most places:
- For most cases the main exception to worry about now is InvalidNamedObjectException.
- Most lowerlevel exception that cant be handled meaningful are now wrapped in the LowLevelException, a
runtime exception.
- Source and Store patterns each now have their own exceptions that generalizes the various physical
exceptions that can happen in that area.
Index: SendMessageServlet.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id-sample/src/java/org/neuclear/id/sample/SendMessageServlet.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** SendMessageServlet.java 17 Dec 2003 23:52:01 -0000 1.3
--- SendMessageServlet.java 19 Dec 2003 18:02:28 -0000 1.4
***************
*** 52,58 ****
out.print("<b>error:</b>");
e.printStackTrace(out);
- } catch (XMLException e) {
- out.print("<b>error:</b>");
- e.printStackTrace(out);
}
--- 52,55 ----
|