Update of /cvsroot/nice/Nice/src/bossa/modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14911/src/bossa/modules
Modified Files:
Package.java
Log Message:
Let the wrapped exception propagate, instead of rewrapping it differently.
Index: Package.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/modules/Package.java,v
retrieving revision 1.109
retrieving revision 1.110
diff -C2 -d -r1.109 -r1.110
*** Package.java 18 Jan 2004 01:14:31 -0000 1.109
--- Package.java 11 Feb 2004 13:30:20 -0000 1.110
***************
*** 55,66 ****
return res;
! try{
! return new Package(lname, compilation, isRoot);
! }
! catch(ExceptionInInitializerError e){
! e.getException().printStackTrace();
! Internal.error("Exception in initializer: "+e.getException());
! return null;
! }
}
--- 55,59 ----
return res;
! return new Package(lname, compilation, isRoot);
}
|