Tag: cws_src680_oj14 User: lla Date: 2007-05-21 13:33:41+0000 Log: #i77259# don't eliminate exceptions
File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: documentcontainer.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/documentcontainer.cxx?r1=1.16.4.5&r2=1.16.4.6 Delta lines: +6 -5 ------------------- --- documentcontainer.cxx 2006-12-18 16:14:55+0000 1.16.4.5 +++ documentcontainer.cxx 2007-05-21 13:33:38+0000 1.16.4.6 @@ -4,9 +4,9 @@ * * $RCSfile: documentcontainer.cxx,v $ * - * $Revision: 1.16.4.5 $ + * $Revision: 1.16.4.6 $ * - * last change: $Author: oj $ $Date: 2006/12/18 16:14:55 $ + * last change: $Author: lla $ $Date: 2007/05/21 13:33:38 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -559,9 +559,10 @@ { throw IllegalArgumentException(); } - catch(WrappedTargetException) + catch(WrappedTargetException e) { - throw IllegalArgumentException(); + // throw IllegalArgumentException(); + throw; } return xComp; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
