summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-07-28 15:50:56 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-07-28 16:14:58 +0200
commit5bdc7103befd92313085824f51b5a8559f464e9a (patch)
tree32d0da00e07ce2f8d3f803fe9cf333448fd633d5 /extensions
parent698315531414b223b35d8507fdf2f56dbcf6bc4c (diff)
More details in debug output
In particular, give type and message of exception when unexpectedly caught. Also miscellaneous other details. Change-Id: I87d71028dbc902e1770fee4c3643c85e75b7646d
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/formcomponenthandler.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/extensions/source/propctrlr/formcomponenthandler.cxx b/extensions/source/propctrlr/formcomponenthandler.cxx
index d3d670aab8ad..4db154965a10 100644
--- a/extensions/source/propctrlr/formcomponenthandler.cxx
+++ b/extensions/source/propctrlr/formcomponenthandler.cxx
@@ -2003,6 +2003,7 @@ namespace pcr
catch( const Exception& )
{
OSL_FAIL( "FormComponentPropertyHandler::impl_updateDependentProperty_nothrow: caught an exception!" );
+ DBG_UNHANDLED_EXCEPTION();
}
}
@@ -2074,6 +2075,7 @@ namespace pcr
catch( const Exception& )
{
OSL_FAIL( "FormComponentPropertyHandler::impl_initComponentMetaData_throw: caught an exception!" );
+ DBG_UNHANDLED_EXCEPTION();
}
}
@@ -2328,6 +2330,7 @@ namespace pcr
catch( const Exception& )
{
OSL_FAIL( "FormComponentPropertyHandler::impl_getRowSet_nothrow: caught an exception!" );
+ DBG_UNHANDLED_EXCEPTION();
}
return xReturn;
}
@@ -2367,6 +2370,7 @@ namespace pcr
catch (const Exception&)
{
OSL_FAIL( "FormComponentPropertyHandler::impl_initFieldList_nothrow: caught an exception!" );
+ DBG_UNHANDLED_EXCEPTION();
}
}
@@ -2423,6 +2427,7 @@ namespace pcr
catch( const Exception& )
{
OSL_FAIL( "FormComponentPropertyHandler::impl_ensureRowsetConnection_nothrow: caught an exception during error handling!" );
+ DBG_UNHANDLED_EXCEPTION();
}
// additional info about what happended
INetURLObject aParser( sDataSourceName );
@@ -2481,6 +2486,7 @@ namespace pcr
catch (const Exception&)
{
OSL_FAIL("FormComponentPropertyHandler::impl_describeCursorSource_nothrow: caught an exception !");
+ DBG_UNHANDLED_EXCEPTION();
}
}
@@ -2658,6 +2664,7 @@ namespace pcr
catch( const Exception& )
{
OSL_FAIL( "FormComponentPropertyHandler::impl_dialogFilterOrSort_nothrow: caught an exception!" );
+ DBG_UNHANDLED_EXCEPTION();
}
if ( aErrorInfo.isValid() )
@@ -2752,6 +2759,7 @@ namespace pcr
catch( const Exception& )
{
OSL_FAIL( "FormComponentPropertyHandler::impl_dialogFormatting_nothrow: : caught an exception!" );
+ DBG_UNHANDLED_EXCEPTION();
}
return bChanged;
}
@@ -3282,6 +3290,7 @@ namespace pcr
catch( const Exception& )
{
OSL_FAIL( "FormComponentPropertyHandler::impl_hasValidDataSourceSignature_nothrow: caught an exception!" );
+ DBG_UNHANDLED_EXCEPTION();
}
}
return bHas;