|
From: <pe...@us...> - 2003-12-19 18:03:38
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/senders
In directory sc8-pr-cvs1:/tmp/cvs-serv5310/src/java/org/neuclear/senders
Modified Files:
LogSender.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: LogSender.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/senders/LogSender.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** LogSender.java 10 Dec 2003 23:58:52 -0000 1.13
--- LogSender.java 19 Dec 2003 18:03:35 -0000 1.14
***************
*** 14,17 ****
--- 14,18 ----
import java.net.URLEncoder;
import java.sql.Timestamp;
+ import java.text.ParseException;
/**
***************
*** 22,25 ****
--- 23,34 ----
* $Id$
* $Log$
+ * Revision 1.14 2003/12/19 18:03:35 pelle
+ * 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.
+ *
* Revision 1.13 2003/12/10 23:58:52 pelle
* Did some cleaning up in the builders
***************
*** 158,161 ****
--- 167,172 ----
Utility.rethrowException(e); //To change body of catch statement use Options | File Templates.
} catch (IOException e) {
+ Utility.rethrowException(e); //To change body of catch statement use Options | File Templates.
+ } catch (ParseException e) {
Utility.rethrowException(e); //To change body of catch statement use Options | File Templates.
}
|