diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-06-06 17:07:25 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-06-06 17:07:35 +0200 |
commit | d0bc637426060593046c8d3a4d01d0b05b052cc5 (patch) | |
tree | 8acab09073f56b0eb04ed9e168f1f5f36428ea99 /connectivity/source | |
parent | 07f5d9839fc28343447b2879a3ccf138bd025544 (diff) |
Normalize on using @throws instead of @raise[s]
...as the former is used almost exclusively
Change-Id: I38ff11cd0d5125534550df99dd427666011c3b7b
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/kab/KDriver.hxx | 8 | ||||
-rw-r--r-- | connectivity/source/drivers/macab/MacabDriver.hxx | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/connectivity/source/drivers/kab/KDriver.hxx b/connectivity/source/drivers/kab/KDriver.hxx index 24e411a3019a..5174c90a0968 100644 --- a/connectivity/source/drivers/kab/KDriver.hxx +++ b/connectivity/source/drivers/kab/KDriver.hxx @@ -85,9 +85,9 @@ namespace connectivity /** initializes the implementation module. - @raises css::uno::RuntimeException + @throws css::uno::RuntimeException if the module could be loaded, but required symbols are missing - @raises css::sdbc::SQLException + @throws css::sdbc::SQLException if the KDE version we're running against is not supported, or no KDE was found at all */ void init(); @@ -99,7 +99,7 @@ namespace connectivity /** creates a new connection @precond <member>init</member> has been called before - @raises css::uno::RuntimeException + @throws css::uno::RuntimeException if no connection object could be created (which is a severe error, normally impossible) */ css::uno::Reference<css::sdbc::XConnection> createConnection( @@ -112,7 +112,7 @@ namespace connectivity @return <TRUE/> if the module could be loaded successfully. - @raises css::uno::RuntimeException + @throws css::uno::RuntimeException if the module could be loaded, but required symbols are missing */ bool impl_loadModule(); diff --git a/connectivity/source/drivers/macab/MacabDriver.hxx b/connectivity/source/drivers/macab/MacabDriver.hxx index 8f19c877cfa1..20063ff115bf 100644 --- a/connectivity/source/drivers/macab/MacabDriver.hxx +++ b/connectivity/source/drivers/macab/MacabDriver.hxx @@ -64,9 +64,9 @@ namespace connectivity /** initializes the implementation module. - @raises css::uno::RuntimeException + @throws css::uno::RuntimeException if the module could be loaded, but required symbols are missing - @raises css::sdbc::SQLException + @throws css::sdbc::SQLException if no Mac OS was found at all */ void init(); @@ -78,7 +78,7 @@ namespace connectivity /** creates a new connection @precond <member>init</member> has been called before - @raises css::uno::RuntimeException + @throws css::uno::RuntimeException if no connection object could be created (which is a severe error, normally impossible) */ MacabConnection* createConnection( MacabDriver* _pDriver ) const; @@ -90,7 +90,7 @@ namespace connectivity @return <TRUE/> if the module could be loaded successfully. - @raises css::uno::RuntimeException + @throws css::uno::RuntimeException if the module could be loaded, but required symbols are missing */ bool impl_loadModule(); |