summaryrefslogtreecommitdiff
path: root/framework/source/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-26 12:28:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-26 12:54:43 +0000
commite57ca02849c3d87142ff5ff9099a212e72b8139c (patch)
treebcce66b27261553c308779f3e8663a269ed3a671 /framework/source/inc
parent8802ebd5172ec4bc412a59d136c82b77ab452281 (diff)
Remove dynamic exception specifications
...(for now, from LIBO_INTERNAL_CODE only). See the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html> "Dynamic Exception Specifications" for details. Most changes have been done automatically by the rewriting loplugin:dynexcspec (after enabling the rewriting mode, to be committed shortly). The way it only removes exception specs from declarations if it also sees a definition, it identified some dead declarations-w/o-definitions (that have been removed manually) and some cases where a definition appeared in multiple include files (which have also been cleaned up manually). There's also been cases of macro paramters (that were used to abstract over exception specs) that have become unused now (and been removed). Furthermore, some code needed to be cleaned up manually (avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no configurations available that would actually build that code. Missing @throws documentation has not been applied in such manual clean-up. Change-Id: I3408691256c9b0c12bc5332de976743626e13960 Reviewed-on: https://gerrit.libreoffice.org/33574 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'framework/source/inc')
-rw-r--r--framework/source/inc/accelerators/acceleratorconfiguration.hxx148
-rw-r--r--framework/source/inc/accelerators/keymapping.hxx3
-rw-r--r--framework/source/inc/dispatch/dispatchdisabler.hxx51
-rw-r--r--framework/source/inc/dispatch/loaddispatcher.hxx15
-rw-r--r--framework/source/inc/loadenv/loadenv.hxx26
5 files changed, 74 insertions, 169 deletions
diff --git a/framework/source/inc/accelerators/acceleratorconfiguration.hxx b/framework/source/inc/accelerators/acceleratorconfiguration.hxx
index ca2bae697177..bf141896591b 100644
--- a/framework/source/inc/accelerators/acceleratorconfiguration.hxx
+++ b/framework/source/inc/accelerators/acceleratorconfiguration.hxx
@@ -98,79 +98,49 @@ class XMLBasedAcceleratorConfiguration : public ::cppu::WeakImplHelper<
public:
// XAcceleratorConfiguration
- virtual css::uno::Sequence< css::awt::KeyEvent > SAL_CALL getAllKeyEvents()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< css::awt::KeyEvent > SAL_CALL getAllKeyEvents() override;
- virtual OUString SAL_CALL getCommandByKeyEvent(const css::awt::KeyEvent& aKeyEvent)
- throw(css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual OUString SAL_CALL getCommandByKeyEvent(const css::awt::KeyEvent& aKeyEvent) override;
virtual void SAL_CALL setKeyEvent(const css::awt::KeyEvent& aKeyEvent,
- const OUString& sCommand )
- throw(css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception ) override;
+ const OUString& sCommand ) override;
- virtual void SAL_CALL removeKeyEvent(const css::awt::KeyEvent& aKeyEvent)
- throw(css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL removeKeyEvent(const css::awt::KeyEvent& aKeyEvent) override;
- virtual css::uno::Sequence< css::awt::KeyEvent > SAL_CALL getKeyEventsByCommand(const OUString& sCommand)
- throw(css::lang::IllegalArgumentException ,
- css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual css::uno::Sequence< css::awt::KeyEvent > SAL_CALL getKeyEventsByCommand(const OUString& sCommand) override;
- virtual css::uno::Sequence< css::uno::Any > SAL_CALL getPreferredKeyEventsForCommandList(const css::uno::Sequence< OUString >& lCommandList)
- throw (css::lang::IllegalArgumentException, css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< css::uno::Any > SAL_CALL getPreferredKeyEventsForCommandList(const css::uno::Sequence< OUString >& lCommandList) override;
- virtual void SAL_CALL removeCommandFromAllKeyEvents(const OUString& sCommand)
- throw(css::lang::IllegalArgumentException ,
- css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL removeCommandFromAllKeyEvents(const OUString& sCommand) override;
// XUIConfigurationPersistence
- virtual void SAL_CALL reload()
- throw(css::uno::Exception ,
- css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL reload() override;
- virtual void SAL_CALL store()
- throw(css::uno::Exception ,
- css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL store() override;
- virtual void SAL_CALL storeToStorage(const css::uno::Reference< css::embed::XStorage >& xStorage)
- throw(css::uno::Exception ,
- css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL storeToStorage(const css::uno::Reference< css::embed::XStorage >& xStorage) override;
- virtual sal_Bool SAL_CALL isModified()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL isModified() override;
- virtual sal_Bool SAL_CALL isReadOnly()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL isReadOnly() override;
// XUIConfigurationStorage
- virtual void SAL_CALL setStorage(const css::uno::Reference< css::embed::XStorage >& xStorage)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL setStorage(const css::uno::Reference< css::embed::XStorage >& xStorage) override;
- virtual sal_Bool SAL_CALL hasStorage()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL hasStorage() override;
// XUIConfiguration
- virtual void SAL_CALL addConfigurationListener(const css::uno::Reference< css::ui::XUIConfigurationListener >& xListener)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL addConfigurationListener(const css::uno::Reference< css::ui::XUIConfigurationListener >& xListener) override;
- virtual void SAL_CALL removeConfigurationListener(const css::uno::Reference< css::ui::XUIConfigurationListener >& xListener)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL removeConfigurationListener(const css::uno::Reference< css::ui::XUIConfigurationListener >& xListener) override;
// XReset
// TODO use XPresetHandler instead if available
- virtual void SAL_CALL reset()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL reset() override;
- virtual void SAL_CALL addResetListener(const css::uno::Reference< css::form::XResetListener >& xListener)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL addResetListener(const css::uno::Reference< css::form::XResetListener >& xListener) override;
- virtual void SAL_CALL removeResetListener(const css::uno::Reference< css::form::XResetListener >& xListener)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL removeResetListener(const css::uno::Reference< css::form::XResetListener >& xListener) override;
// called when changes occurred in the storage
void changesOccurred();
@@ -267,92 +237,60 @@ class XCUBasedAcceleratorConfiguration : public ::cppu::WeakImplHelper<
public:
// XAcceleratorConfiguration
- virtual css::uno::Sequence< css::awt::KeyEvent > SAL_CALL getAllKeyEvents()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< css::awt::KeyEvent > SAL_CALL getAllKeyEvents() override;
- virtual OUString SAL_CALL getCommandByKeyEvent(const css::awt::KeyEvent& aKeyEvent)
- throw(css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual OUString SAL_CALL getCommandByKeyEvent(const css::awt::KeyEvent& aKeyEvent) override;
virtual void SAL_CALL setKeyEvent(const css::awt::KeyEvent& aKeyEvent,
- const OUString& sCommand )
- throw (css::lang::IllegalArgumentException, css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception) override;
+ const OUString& sCommand ) override;
- virtual void SAL_CALL removeKeyEvent(const css::awt::KeyEvent& aKeyEvent)
- throw(css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL removeKeyEvent(const css::awt::KeyEvent& aKeyEvent) override;
- virtual css::uno::Sequence< css::awt::KeyEvent > SAL_CALL getKeyEventsByCommand(const OUString& sCommand)
- throw(css::lang::IllegalArgumentException ,
- css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual css::uno::Sequence< css::awt::KeyEvent > SAL_CALL getKeyEventsByCommand(const OUString& sCommand) override;
- virtual css::uno::Sequence< css::uno::Any > SAL_CALL getPreferredKeyEventsForCommandList(const css::uno::Sequence< OUString >& lCommandList)
- throw(css::lang::IllegalArgumentException, css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Sequence< css::uno::Any > SAL_CALL getPreferredKeyEventsForCommandList(const css::uno::Sequence< OUString >& lCommandList) override;
- virtual void SAL_CALL removeCommandFromAllKeyEvents(const OUString& sCommand)
- throw(css::lang::IllegalArgumentException ,
- css::container::NoSuchElementException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL removeCommandFromAllKeyEvents(const OUString& sCommand) override;
// XUIConfigurationPersistence
- virtual void SAL_CALL reload()
- throw(css::uno::Exception ,
- css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL reload() override;
- virtual void SAL_CALL store()
- throw(css::uno::Exception ,
- css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL store() override;
- virtual void SAL_CALL storeToStorage(const css::uno::Reference< css::embed::XStorage >& xStorage)
- throw(css::uno::Exception ,
- css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL storeToStorage(const css::uno::Reference< css::embed::XStorage >& xStorage) override;
- virtual sal_Bool SAL_CALL isModified()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL isModified() override;
- virtual sal_Bool SAL_CALL isReadOnly()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL isReadOnly() override;
// XUIConfigurationStorage
- virtual void SAL_CALL setStorage(const css::uno::Reference< css::embed::XStorage >& xStorage)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL setStorage(const css::uno::Reference< css::embed::XStorage >& xStorage) override;
- virtual sal_Bool SAL_CALL hasStorage()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL hasStorage() override;
// XUIConfiguration
- virtual void SAL_CALL addConfigurationListener(const css::uno::Reference< css::ui::XUIConfigurationListener >& xListener)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL addConfigurationListener(const css::uno::Reference< css::ui::XUIConfigurationListener >& xListener) override;
- virtual void SAL_CALL removeConfigurationListener(const css::uno::Reference< css::ui::XUIConfigurationListener >& xListener)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL removeConfigurationListener(const css::uno::Reference< css::ui::XUIConfigurationListener >& xListener) override;
// XReset
// TODO use XPresetHandler instead if available
- virtual void SAL_CALL reset()
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL reset() override;
- virtual void SAL_CALL addResetListener(const css::uno::Reference< css::form::XResetListener >& xListener)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL addResetListener(const css::uno::Reference< css::form::XResetListener >& xListener) override;
- virtual void SAL_CALL removeResetListener(const css::uno::Reference< css::form::XResetListener >& xListener)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL removeResetListener(const css::uno::Reference< css::form::XResetListener >& xListener) override;
// css.util.XChangesListener
- virtual void SAL_CALL changesOccurred(const css::util::ChangesEvent& aEvent)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL changesOccurred(const css::util::ChangesEvent& aEvent) override;
// css.lang.XEventListener
- virtual void SAL_CALL disposing(const css::lang::EventObject& aEvent)
- throw(css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL disposing(const css::lang::EventObject& aEvent) override;
// XComponent
- virtual void SAL_CALL dispose() throw (css::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) throw (css::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL removeEventListener( const css::uno::Reference< css::lang::XEventListener >& aListener ) throw (css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL dispose() override;
+ virtual void SAL_CALL addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener ) override;
+ virtual void SAL_CALL removeEventListener( const css::uno::Reference< css::lang::XEventListener >& aListener ) override;
// helper for derived classes
diff --git a/framework/source/inc/accelerators/keymapping.hxx b/framework/source/inc/accelerators/keymapping.hxx
index d86917ead052..639d6e09a9d7 100644
--- a/framework/source/inc/accelerators/keymapping.hxx
+++ b/framework/source/inc/accelerators/keymapping.hxx
@@ -91,8 +91,7 @@ class KeyMapping
if the given identifier does not describe
a well known key code.
*/
- sal_uInt16 mapIdentifierToCode(const OUString& sIdentifier)
- throw(css::lang::IllegalArgumentException);
+ sal_uInt16 mapIdentifierToCode(const OUString& sIdentifier);
/** @short return a suitable key identifier
for the specified key code.
diff --git a/framework/source/inc/dispatch/dispatchdisabler.hxx b/framework/source/inc/dispatch/dispatchdisabler.hxx
index b41d7af00221..cbc7dffaf13c 100644
--- a/framework/source/inc/dispatch/dispatchdisabler.hxx
+++ b/framework/source/inc/dispatch/dispatchdisabler.hxx
@@ -48,67 +48,50 @@ public:
DispatchDisabler(const css::uno::Reference< css::uno::XComponentContext >& rxContext);
// XInitialization
- virtual void SAL_CALL initialize( const ::css::uno::Sequence< ::css::uno::Any >& aArguments )
- throw (::css::uno::Exception, ::css::uno::RuntimeException, ::std::exception) override;
+ virtual void SAL_CALL initialize( const ::css::uno::Sequence< ::css::uno::Any >& aArguments ) override;
// XDispatchProvider
virtual ::css::uno::Reference< ::css::frame::XDispatch > SAL_CALL
queryDispatch( const ::css::util::URL& URL,
const OUString& TargetFrameName,
- ::sal_Int32 SearchFlags )
- throw (::css::uno::RuntimeException, ::std::exception) override;
+ ::sal_Int32 SearchFlags ) override;
virtual ::css::uno::Sequence< ::css::uno::Reference< ::css::frame::XDispatch > > SAL_CALL
- queryDispatches( const ::css::uno::Sequence< ::css::frame::DispatchDescriptor >& Requests )
- throw (::css::uno::RuntimeException, ::std::exception) override;
+ queryDispatches( const ::css::uno::Sequence< ::css::frame::DispatchDescriptor >& Requests ) override;
// XDispatchProviderInterceptor
virtual ::css::uno::Reference< ::css::frame::XDispatchProvider > SAL_CALL
- getSlaveDispatchProvider() throw (::css::uno::RuntimeException, ::std::exception) override;
+ getSlaveDispatchProvider() override;
virtual void SAL_CALL
- setSlaveDispatchProvider( const ::css::uno::Reference< ::css::frame::XDispatchProvider >& NewDispatchProvider )
- throw (::css::uno::RuntimeException, ::std::exception) override;
+ setSlaveDispatchProvider( const ::css::uno::Reference< ::css::frame::XDispatchProvider >& NewDispatchProvider ) override;
virtual ::css::uno::Reference< ::css::frame::XDispatchProvider > SAL_CALL
- getMasterDispatchProvider() throw (::css::uno::RuntimeException, ::std::exception) override;
+ getMasterDispatchProvider() override;
virtual void SAL_CALL
- setMasterDispatchProvider( const ::css::uno::Reference< ::css::frame::XDispatchProvider >& NewSupplier )
- throw (::css::uno::RuntimeException, ::std::exception) override;
+ setMasterDispatchProvider( const ::css::uno::Reference< ::css::frame::XDispatchProvider >& NewSupplier ) override;
// XInterceptorInfo
virtual ::css::uno::Sequence< OUString > SAL_CALL
- getInterceptedURLs() throw (::css::uno::RuntimeException, ::std::exception) override;
+ getInterceptedURLs() override;
// XElementAccess
- virtual ::css::uno::Type SAL_CALL getElementType()
- throw (::css::uno::RuntimeException, ::std::exception) override;
- virtual ::sal_Bool SAL_CALL hasElements()
- throw (::css::uno::RuntimeException, ::std::exception) override;
+ virtual ::css::uno::Type SAL_CALL getElementType() override;
+ virtual ::sal_Bool SAL_CALL hasElements() override;
// XNameAccess
- virtual ::css::uno::Any SAL_CALL getByName( const OUString& aName )
- throw (::css::container::NoSuchElementException, ::css::lang::WrappedTargetException,
- ::css::uno::RuntimeException, ::std::exception) override;
- virtual ::css::uno::Sequence< OUString > SAL_CALL getElementNames()
- throw (::css::uno::RuntimeException, ::std::exception) override;
- virtual sal_Bool SAL_CALL hasByName( const OUString& aName )
- throw (::css::uno::RuntimeException, ::std::exception) override;
+ virtual ::css::uno::Any SAL_CALL getByName( const OUString& aName ) override;
+ virtual ::css::uno::Sequence< OUString > SAL_CALL getElementNames() override;
+ virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override;
// XNameReplace
- virtual void SAL_CALL replaceByName( const OUString& aName, const ::css::uno::Any& aElement )
- throw (::css::lang::IllegalArgumentException, ::css::container::NoSuchElementException,
- ::css::lang::WrappedTargetException, ::css::uno::RuntimeException, ::std::exception) override;
+ virtual void SAL_CALL replaceByName( const OUString& aName, const ::css::uno::Any& aElement ) override;
// XNameContainer
- virtual void SAL_CALL insertByName( const OUString& aName, const ::css::uno::Any& aElement )
- throw (::css::lang::IllegalArgumentException, ::css::container::ElementExistException,
- ::css::lang::WrappedTargetException, ::css::uno::RuntimeException, ::std::exception) override;
- virtual void SAL_CALL removeByName( const OUString& Name )
- throw (::css::container::NoSuchElementException, ::css::lang::WrappedTargetException,
- ::css::uno::RuntimeException, ::std::exception) override;
+ virtual void SAL_CALL insertByName( const OUString& aName, const ::css::uno::Any& aElement ) override;
+ virtual void SAL_CALL removeByName( const OUString& Name ) override;
DECLARE_XSERVICEINFO_NOFACTORY
/* Helper for registry */
/// @throws css::uno::Exception
- static css::uno::Reference< css::uno::XInterface > SAL_CALL impl_createInstance ( const css::uno::Reference< css::lang::XMultiServiceFactory >& xServiceManager ) throw( css::uno::Exception );
+ static css::uno::Reference< css::uno::XInterface > SAL_CALL impl_createInstance ( const css::uno::Reference< css::lang::XMultiServiceFactory >& xServiceManager );
static css::uno::Reference< css::lang::XSingleServiceFactory > SAL_CALL impl_createFactory ( const css::uno::Reference< css::lang::XMultiServiceFactory >& xServiceManager );
};
diff --git a/framework/source/inc/dispatch/loaddispatcher.hxx b/framework/source/inc/dispatch/loaddispatcher.hxx
index 9d49e46b711a..c368b37fb626 100644
--- a/framework/source/inc/dispatch/loaddispatcher.hxx
+++ b/framework/source/inc/dispatch/loaddispatcher.hxx
@@ -98,26 +98,21 @@ class LoadDispatcher : public ::cppu::WeakImplHelper< css::frame::XNotifyingDis
// XNotifyingDispatch
virtual void SAL_CALL dispatchWithNotification(const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments,
- const css::uno::Reference< css::frame::XDispatchResultListener >& xListener )
- throw(css::uno::RuntimeException, std::exception) override;
+ const css::uno::Reference< css::frame::XDispatchResultListener >& xListener ) override;
// XDispatch
virtual void SAL_CALL dispatch(const css::util::URL& aURL ,
- const css::uno::Sequence< css::beans::PropertyValue >& lArguments)
- throw(css::uno::RuntimeException, std::exception) override;
+ const css::uno::Sequence< css::beans::PropertyValue >& lArguments) override;
virtual void SAL_CALL addStatusListener(const css::uno::Reference< css::frame::XStatusListener >& xListener,
- const css::util::URL& aURL )
- throw(css::uno::RuntimeException, std::exception) override;
+ const css::util::URL& aURL ) override;
virtual void SAL_CALL removeStatusListener(const css::uno::Reference< css::frame::XStatusListener >& xListener,
- const css::util::URL& aURL )
- throw(css::uno::RuntimeException, std::exception) override;
+ const css::util::URL& aURL ) override;
// XSynchronousDispatch
virtual css::uno::Any SAL_CALL dispatchWithReturnValue( const css::util::URL& aURL ,
- const css::uno::Sequence< css::beans::PropertyValue >& lArguments )
- throw( css::uno::RuntimeException, std::exception ) override;
+ const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) override;
private:
css::uno::Any impl_dispatch( const css::util::URL& rURL,
diff --git a/framework/source/inc/loadenv/loadenv.hxx b/framework/source/inc/loadenv/loadenv.hxx
index bf6dfc1ff32d..3597547675c1 100644
--- a/framework/source/inc/loadenv/loadenv.hxx
+++ b/framework/source/inc/loadenv/loadenv.hxx
@@ -206,8 +206,7 @@ public:
@throw A RuntimeException in case any internal process indicates, that
the whole runtime can't be used any longer.
*/
- LoadEnv(const css::uno::Reference< css::uno::XComponentContext >& xContext)
- throw(LoadEnvException, css::uno::RuntimeException);
+ LoadEnv(const css::uno::Reference< css::uno::XComponentContext >& xContext);
/** @short deinitialize an instance of this class in the right way.
*/
@@ -221,10 +220,7 @@ public:
const OUString& sURL ,
const OUString& sTarget,
sal_Int32 nFlags ,
- const css::uno::Sequence< css::beans::PropertyValue >& lArgs )
- throw(css::lang::IllegalArgumentException,
- css::io::IOException ,
- css::uno::RuntimeException );
+ const css::uno::Sequence< css::beans::PropertyValue >& lArgs );
/** @short set some changeable parameters for a new load request.
@@ -377,8 +373,7 @@ public:
@throw A RuntimeException in case any internal process indicates, that
the whole runtime can't be used any longer.
*/
- void impl_reactForLoadingState()
- throw(LoadEnvException, css::uno::RuntimeException);
+ void impl_reactForLoadingState();
private:
@@ -400,8 +395,7 @@ private:
@throw A RuntimeException in case any internal process indicates, that
the whole runtime can't be used any longer.
*/
- void impl_detectTypeAndFilter()
- throw(LoadEnvException, css::uno::RuntimeException, std::exception);
+ void impl_detectTypeAndFilter();
/** @short tries to use ContentHandler objects for loading.
@@ -421,8 +415,7 @@ private:
@throw A RuntimeException in case any internal process indicates, that
the whole runtime can't be used any longer.
*/
- bool impl_handleContent()
- throw(LoadEnvException, css::uno::RuntimeException, std::exception);
+ bool impl_handleContent();
/** @short tries to use FrameLoader objects for loading.
@@ -440,8 +433,7 @@ private:
@throw A RuntimeException in case any internal process indicates, that
the whole runtime can't be used any longer.
*/
- bool impl_loadContent()
- throw(LoadEnvException, css::uno::RuntimeException, std::exception);
+ bool impl_loadContent();
/** @short checks if the specified content is already loaded.
@@ -466,8 +458,7 @@ private:
@throw A RuntimeException in case any internal process indicates, that
the whole runtime can't be used any longer.
*/
- css::uno::Reference< css::frame::XFrame > impl_searchAlreadyLoaded()
- throw(LoadEnvException, css::uno::RuntimeException);
+ css::uno::Reference< css::frame::XFrame > impl_searchAlreadyLoaded();
/** @short search for any target frame, which seems to be useable
for this load request.
@@ -497,8 +488,7 @@ private:
@throw A RuntimeException in case any internal process indicates, that
the whole runtime can't be used any longer.
*/
- css::uno::Reference< css::frame::XFrame > impl_searchRecycleTarget()
- throw(LoadEnvException, css::uno::RuntimeException, std::exception);
+ css::uno::Reference< css::frame::XFrame > impl_searchRecycleTarget();
/** @short because showing of a frame is needed more than once...
it's implemented as an separate method .-)