Author: fmantek
Date: Thu Nov 15 02:59:39 2007
New Revision: 321
Modified:
trunk/clients/cs/src/core/logrequest.cs
Log:
Fixed issue 93 - in some cases we would rethrow an exception and loose
the stack trace. Only important for debugging.
Modified: trunk/clients/cs/src/core/logrequest.cs
==============================================================================
--- trunk/clients/cs/src/core/logrequest.cs (original)
+++ trunk/clients/cs/src/core/logrequest.cs Thu Nov 15 02:59:39 2007
@@ -179,7 +179,7 @@
Stream req = response.GetResponseStream();
SaveStream(req, this.strOutput);
}
- throw re;
+ throw;
}
}
/////////////////////////////////////////////////////////////////////////////
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---