Update of /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28353/javasrc/biz/xsoftware/mock
Modified Files:
MockSuperclass.java
Log Message:
jdk must have changed.....stack trace not being filled in on the throws statement now....need to fill it in ourselves before throwing it.
Index: MockSuperclass.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock/MockSuperclass.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** MockSuperclass.java 1 Jul 2005 12:30:13 -0000 1.4
--- MockSuperclass.java 24 Sep 2005 05:41:22 -0000 1.5
***************
*** 203,206 ****
--- 203,207 ----
methodToException.remove(method);
+ t.fillInStackTrace();
log.fine("throw exception on method="+method+" exc="+t);
throw (Throwable)t;
|