cppuhelper: retrofit std::exception into overriding exception specs

Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
This commit is contained in:
Stephan Bergmann
2014-02-25 21:31:58 +01:00
parent 6fc2bd0094
commit 5e21a413c7
3925 changed files with 61061 additions and 61061 deletions

View File

@@ -54,20 +54,20 @@ namespace pq_sdbc_driver
OUString Array::getBaseTypeName( )
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception)
{
return OUString( "varchar" );
}
sal_Int32 Array::getBaseType( )
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception)
{
return com::sun::star::sdbc::DataType::VARCHAR;
}
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > Array::getArray(
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& /* typeMap */ )
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception)
{
return m_data;
}
@@ -76,7 +76,7 @@ sal_Int32 Array::getBaseType( )
sal_Int32 index,
sal_Int32 count,
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& /* typeMap */ )
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception)
{
checkRange( index, count );
return Sequence< Any > ( &m_data[index-1], count );
@@ -84,7 +84,7 @@ sal_Int32 Array::getBaseType( )
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > Array::getResultSet(
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& typeMap )
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception)
{
return getResultSetAtIndex( 0 , m_data.getLength() , typeMap );
}
@@ -93,7 +93,7 @@ sal_Int32 Array::getBaseType( )
sal_Int32 index,
sal_Int32 count,
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& /* typeMap */ )
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception)
{
checkRange( index, count );
Sequence< Sequence< Any > > ret( count );