From: <bo...@us...> - 2009-05-18 16:03:09
|
Revision: 327 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=327&view=rev Author: bodewig Date: 2009-05-18 16:03:06 +0000 (Mon, 18 May 2009) Log Message: ----------- missing using statement, no idea why it compiled before Modified Paths: -------------- trunk/xmlunit/src/main/net-core/builder/Input.cs Modified: trunk/xmlunit/src/main/net-core/builder/Input.cs =================================================================== --- trunk/xmlunit/src/main/net-core/builder/Input.cs 2009-05-18 16:01:31 UTC (rev 326) +++ trunk/xmlunit/src/main/net-core/builder/Input.cs 2009-05-18 16:03:06 UTC (rev 327) @@ -14,6 +14,7 @@ using System.IO; using System.Xml; using System.Xml.Xsl; +using net.sf.xmlunit.exceptions; using net.sf.xmlunit.input; namespace net.sf.xmlunit.builder { @@ -127,7 +128,7 @@ ms); } return FromMemory(ms.ToArray()).Build(); - } catch (Exception ex) { + } catch (System.Exception ex) { throw new XMLUnitException(ex); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |