[mapguide-commits] r7447 - branches/2.5/MgDev/Common/Foundation/Exception

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Fri Apr 5 05:43:02 PDT 2013


Author: jng
Date: 2013-04-05 05:43:02 -0700 (Fri, 05 Apr 2013)
New Revision: 7447

Modified:
   branches/2.5/MgDev/Common/Foundation/Exception/Exception.cpp
Log:
#2251: Include stack trace in MgException::GetDetails() as this is what the API documentation states this method includes

Modified: branches/2.5/MgDev/Common/Foundation/Exception/Exception.cpp
===================================================================
--- branches/2.5/MgDev/Common/Foundation/Exception/Exception.cpp	2013-04-05 12:41:55 UTC (rev 7446)
+++ branches/2.5/MgDev/Common/Foundation/Exception/Exception.cpp	2013-04-05 12:43:02 UTC (rev 7447)
@@ -534,6 +534,8 @@
         m_details = GetExceptionMessage(locale);
         m_details += L"\n";
         m_details += FormatDetails(locale);
+        m_details += L"\n";
+        m_details += FormatStackTrace(locale);
     }
 
     MG_CATCH_AND_RELEASE()



More information about the mapguide-commits mailing list