summaryrefslogtreecommitdiff
path: root/connectivity/source/commontools/parameters.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/commontools/parameters.cxx')
-rw-r--r--connectivity/source/commontools/parameters.cxx21
1 files changed, 14 insertions, 7 deletions
diff --git a/connectivity/source/commontools/parameters.cxx b/connectivity/source/commontools/parameters.cxx
index e03c6064c7cf..8ab930dc2d3f 100644
--- a/connectivity/source/commontools/parameters.cxx
+++ b/connectivity/source/commontools/parameters.cxx
@@ -197,7 +197,8 @@ namespace dbtools
}
catch( const Exception& )
{
- SAL_WARN( "connectivity.commontools", "ParameterManager::collectInnerParameters: caught an exception!" );
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "connectivity.commontools", "ParameterManager::collectInnerParameters: caught an exception! " << exceptionToString(ex) );
}
}
}
@@ -426,7 +427,8 @@ namespace dbtools
}
catch( const Exception& )
{
- SAL_WARN( "connectivity.commontools", "ParameterManager::analyzeFieldLinks: caught an exception!" );
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "connectivity.commontools", "ParameterManager::analyzeFieldLinks: caught an exception! " << exceptionToString(ex) );
}
}
@@ -664,7 +666,8 @@ namespace dbtools
}
catch( const Exception& )
{
- SAL_WARN( "connectivity.commontools", "ParameterManager::completeParameters: caught an exception while calling the handler!" );
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "connectivity.commontools", "ParameterManager::completeParameters: caught an exception while calling the handler! " << exceptionToString(ex) );
}
if ( !pParams->wasSelected() )
@@ -694,7 +697,8 @@ namespace dbtools
}
catch( const Exception& )
{
- SAL_WARN( "connectivity.commontools", "ParameterManager::completeParameters: caught an exception while propagating the values!" );
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "connectivity.commontools", "ParameterManager::completeParameters: caught an exception while propagating the values! " << exceptionToString(ex) );
}
return true;
}
@@ -788,7 +792,8 @@ namespace dbtools
}
catch( const Exception& )
{
- SAL_WARN( "connectivity.commontools", "ParameterManager::cacheConnectionInfo: caught an exception!" );
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "connectivity.commontools", "ParameterManager::cacheConnectionInfo: caught an exception! " << exceptionToString(ex) );
}
}
@@ -844,7 +849,8 @@ namespace dbtools
}
catch( const Exception& )
{
- SAL_WARN( "connectivity.commontools", "ParameterManager::getParentColumns: caught an exception!" );
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "connectivity.commontools", "ParameterManager::getParentColumns: caught an exception! " << exceptionToString(ex) );
}
return _out_rxParentColumns.is();
}
@@ -940,7 +946,8 @@ namespace dbtools
}
catch( const Exception& )
{
- SAL_WARN( "connectivity.commontools", "ParameterManager::resetParameterValues: caught an exception!" );
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "connectivity.commontools", "ParameterManager::resetParameterValues: caught an exception! " << exceptionToString(ex) );
}
}