[mapguide-commits] r4943 - trunk/Tools/Maestro/MaestroAPI

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Tue Jun 15 06:38:13 EDT 2010


Author: jng
Date: 2010-06-15 10:38:13 +0000 (Tue, 15 Jun 2010)
New Revision: 4943

Modified:
   trunk/Tools/Maestro/MaestroAPI/NestedExceptionMessageProcessor.cs
Log:
2.5 sandbox testing revealed that the NestedExceptionMessageProcessor.GetFullMessage() method is omitting the message of the very last nested exception. This submission fixes this flaw.

Modified: trunk/Tools/Maestro/MaestroAPI/NestedExceptionMessageProcessor.cs
===================================================================
--- trunk/Tools/Maestro/MaestroAPI/NestedExceptionMessageProcessor.cs	2010-06-15 10:34:05 UTC (rev 4942)
+++ trunk/Tools/Maestro/MaestroAPI/NestedExceptionMessageProcessor.cs	2010-06-15 10:38:13 UTC (rev 4943)
@@ -46,6 +46,7 @@
                 sb.Append(innerPrefix + ex.Message);
                 ex = ex.InnerException;
             }
+            sb.Append(innerPrefix + ex.Message);
             return sb.ToString();
         }
     }



More information about the mapguide-commits mailing list