Kaydet (Commit) fc0f5f65 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Revert "coverity#1202903 Uncaught exception"

This reverts commit 37168336,
DeploymentException is a RuntimeException.
üst 60db3dae
......@@ -60,7 +60,7 @@ IMPLEMENT_SERVICE_INFO(OFlatConnection, "com.sun.star.sdbc.drivers.flat.Connecti
void OFlatConnection::construct(const OUString& url,const Sequence< PropertyValue >& info)
throw(css::sdbc::SQLException, css::uno::RuntimeException, css::uno::DeploymentException)
throw(css::sdbc::SQLException, css::uno::RuntimeException)
{
osl_atomic_increment( &m_refCount );
......
......@@ -40,7 +40,7 @@ namespace connectivity
OFlatConnection(ODriver* _pDriver);
virtual ~OFlatConnection();
virtual void construct(const OUString& _rUrl,const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rInfo ) throw(css::sdbc::SQLException, css::uno::RuntimeException, css::uno::DeploymentException) SAL_OVERRIDE;
virtual void construct(const OUString& _rUrl,const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& _rInfo ) throw(css::sdbc::SQLException, css::uno::RuntimeException) SAL_OVERRIDE;
// own methods
inline bool isHeaderLine() const { return m_bHeaderLine; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment