summaryrefslogtreecommitdiff
path: root/configmgr/source/configurationregistry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/configurationregistry.cxx')
-rw-r--r--configmgr/source/configurationregistry.cxx166
1 files changed, 83 insertions, 83 deletions
diff --git a/configmgr/source/configurationregistry.cxx b/configmgr/source/configurationregistry.cxx
index f22bc818ba2d..83dbd448232e 100644
--- a/configmgr/source/configurationregistry.cxx
+++ b/configmgr/source/configurationregistry.cxx
@@ -81,59 +81,59 @@ private:
virtual ~Service() {}
virtual OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException)
+ throw (css::uno::RuntimeException, std::exception)
{ return configuration_registry::getImplementationName(); }
virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
- throw (css::uno::RuntimeException)
+ throw (css::uno::RuntimeException, std::exception)
{ return cppu::supportsService(this, ServiceName); }
virtual css::uno::Sequence< OUString > SAL_CALL
- getSupportedServiceNames() throw (css::uno::RuntimeException)
+ getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception)
{ return configuration_registry::getSupportedServiceNames(); }
- virtual OUString SAL_CALL getURL() throw (css::uno::RuntimeException);
+ virtual OUString SAL_CALL getURL() throw (css::uno::RuntimeException, std::exception);
virtual void SAL_CALL open(
OUString const & rURL, sal_Bool bReadOnly, sal_Bool)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
- virtual sal_Bool SAL_CALL isValid() throw (css::uno::RuntimeException);
+ virtual sal_Bool SAL_CALL isValid() throw (css::uno::RuntimeException, std::exception);
virtual void SAL_CALL close()
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual void SAL_CALL destroy()
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::uno::Reference< css::registry::XRegistryKey > SAL_CALL
getRootKey()
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
- virtual sal_Bool SAL_CALL isReadOnly() throw (css::uno::RuntimeException);
+ virtual sal_Bool SAL_CALL isReadOnly() throw (css::uno::RuntimeException, std::exception);
virtual void SAL_CALL mergeKey(OUString const &, OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::registry::MergeConflictException, css::uno::RuntimeException);
+ css::registry::MergeConflictException, css::uno::RuntimeException, std::exception);
- virtual void SAL_CALL flush() throw (css::uno::RuntimeException);
+ virtual void SAL_CALL flush() throw (css::uno::RuntimeException, std::exception);
virtual void SAL_CALL addFlushListener(
css::uno::Reference< css::util::XFlushListener > const &)
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);
virtual void SAL_CALL removeFlushListener(
css::uno::Reference< css::util::XFlushListener > const &)
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);
void checkValid();
@@ -162,154 +162,154 @@ private:
virtual ~RegistryKey() {}
virtual OUString SAL_CALL getKeyName()
- throw (css::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);
virtual sal_Bool SAL_CALL isReadOnly()
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
- virtual sal_Bool SAL_CALL isValid() throw (css::uno::RuntimeException);
+ virtual sal_Bool SAL_CALL isValid() throw (css::uno::RuntimeException, std::exception);
virtual css::registry::RegistryKeyType SAL_CALL getKeyType(
OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::registry::RegistryValueType SAL_CALL getValueType()
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual sal_Int32 SAL_CALL getLongValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException);
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception);
virtual void SAL_CALL setLongValue(sal_Int32)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::uno::Sequence< sal_Int32 > SAL_CALL getLongListValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException);
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception);
virtual void SAL_CALL setLongListValue(
css::uno::Sequence< sal_Int32 > const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getAsciiValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException);
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception);
virtual void SAL_CALL setAsciiValue(OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::uno::Sequence< OUString > SAL_CALL getAsciiListValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException);
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception);
virtual void SAL_CALL setAsciiListValue(
css::uno::Sequence< OUString > const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getStringValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException);
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception);
virtual void SAL_CALL setStringValue(OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::uno::Sequence< OUString > SAL_CALL getStringListValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException);
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception);
virtual void SAL_CALL setStringListValue(
css::uno::Sequence< OUString > const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getBinaryValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException);
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception);
virtual void SAL_CALL setBinaryValue(css::uno::Sequence< sal_Int8 > const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::uno::Reference< css::registry::XRegistryKey > SAL_CALL openKey(
OUString const & aKeyName)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::uno::Reference< css::registry::XRegistryKey > SAL_CALL
createKey(OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual void SAL_CALL closeKey()
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual void SAL_CALL deleteKey(OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual
css::uno::Sequence< css::uno::Reference< css::registry::XRegistryKey > >
SAL_CALL openKeys()
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual css::uno::Sequence< OUString > SAL_CALL getKeyNames()
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual sal_Bool SAL_CALL createLink(
OUString const &, OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual void SAL_CALL deleteLink(OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getLinkTarget(OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getResolvedName(
OUString const & aKeyName)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException);
+ css::uno::RuntimeException, std::exception);
Service & service_;
css::uno::Any value_;
@@ -336,14 +336,14 @@ Service::Service(
}
}
-OUString Service::getURL() throw (css::uno::RuntimeException) {
+OUString Service::getURL() throw (css::uno::RuntimeException, std::exception) {
osl::MutexGuard g(mutex_);
checkValid_RuntimeException();
return url_;
}
void Service::open(OUString const & rURL, sal_Bool bReadOnly, sal_Bool)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
//TODO: bCreate
osl::MutexGuard g(mutex_);
@@ -371,13 +371,13 @@ void Service::open(OUString const & rURL, sal_Bool bReadOnly, sal_Bool)
readOnly_ = bReadOnly;
}
-sal_Bool Service::isValid() throw (css::uno::RuntimeException) {
+sal_Bool Service::isValid() throw (css::uno::RuntimeException, std::exception) {
osl::MutexGuard g(mutex_);
return access_.is();
}
void Service::close()
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(mutex_);
checkValid();
@@ -385,7 +385,7 @@ void Service::close()
}
void Service::destroy()
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -393,14 +393,14 @@ void Service::destroy()
}
css::uno::Reference< css::registry::XRegistryKey > Service::getRootKey()
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(mutex_);
checkValid();
return new RegistryKey(*this, css::uno::makeAny(access_));
}
-sal_Bool Service::isReadOnly() throw (css::uno::RuntimeException) {
+sal_Bool Service::isReadOnly() throw (css::uno::RuntimeException, std::exception) {
osl::MutexGuard g(mutex_);
checkValid_RuntimeException();
return readOnly_;
@@ -409,14 +409,14 @@ sal_Bool Service::isReadOnly() throw (css::uno::RuntimeException) {
void Service::mergeKey(OUString const &, OUString const &)
throw (
css::registry::InvalidRegistryException,
- css::registry::MergeConflictException, css::uno::RuntimeException)
+ css::registry::MergeConflictException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
static_cast< cppu::OWeakObject * >(this));
}
-void Service::flush() throw (css::uno::RuntimeException)
+void Service::flush() throw (css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -425,7 +425,7 @@ void Service::flush() throw (css::uno::RuntimeException)
void Service::addFlushListener(
css::uno::Reference< css::util::XFlushListener > const &)
- throw (css::uno::RuntimeException)
+ throw (css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -434,7 +434,7 @@ void Service::addFlushListener(
void Service::removeFlushListener(
css::uno::Reference< css::util::XFlushListener > const &)
- throw (css::uno::RuntimeException)
+ throw (css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -461,7 +461,7 @@ void Service::doClose() {
access_.clear();
}
-OUString RegistryKey::getKeyName() throw (css::uno::RuntimeException) {
+OUString RegistryKey::getKeyName() throw (css::uno::RuntimeException, std::exception) {
osl::MutexGuard g(service_.mutex_);
service_.checkValid_RuntimeException();
css::uno::Reference< css::container::XNamed > named;
@@ -474,19 +474,19 @@ OUString RegistryKey::getKeyName() throw (css::uno::RuntimeException) {
}
sal_Bool RegistryKey::isReadOnly()
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid_RuntimeException();
return service_.readOnly_; //TODO: read-only sub-nodes in update access?
}
-sal_Bool RegistryKey::isValid() throw (css::uno::RuntimeException) {
+sal_Bool RegistryKey::isValid() throw (css::uno::RuntimeException, std::exception) {
return service_.isValid();
}
css::registry::RegistryKeyType RegistryKey::getKeyType(OUString const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -494,7 +494,7 @@ css::registry::RegistryKeyType RegistryKey::getKeyType(OUString const &)
}
css::registry::RegistryValueType RegistryKey::getValueType()
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -524,7 +524,7 @@ css::registry::RegistryValueType RegistryKey::getValueType()
sal_Int32 RegistryKey::getLongValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException)
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -538,7 +538,7 @@ sal_Int32 RegistryKey::getLongValue()
}
void RegistryKey::setLongValue(sal_Int32)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -548,7 +548,7 @@ void RegistryKey::setLongValue(sal_Int32)
css::uno::Sequence< sal_Int32 > RegistryKey::getLongListValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException)
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -562,7 +562,7 @@ css::uno::Sequence< sal_Int32 > RegistryKey::getLongListValue()
}
void RegistryKey::setLongListValue(css::uno::Sequence< sal_Int32 > const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -572,7 +572,7 @@ void RegistryKey::setLongListValue(css::uno::Sequence< sal_Int32 > const &)
OUString RegistryKey::getAsciiValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException)
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -586,7 +586,7 @@ OUString RegistryKey::getAsciiValue()
}
void RegistryKey::setAsciiValue(OUString const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -596,7 +596,7 @@ void RegistryKey::setAsciiValue(OUString const &)
css::uno::Sequence< OUString > RegistryKey::getAsciiListValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException)
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -610,7 +610,7 @@ css::uno::Sequence< OUString > RegistryKey::getAsciiListValue()
}
void RegistryKey::setAsciiListValue(css::uno::Sequence< OUString > const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -620,7 +620,7 @@ void RegistryKey::setAsciiListValue(css::uno::Sequence< OUString > const &)
OUString RegistryKey::getStringValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException)
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -634,7 +634,7 @@ OUString RegistryKey::getStringValue()
}
void RegistryKey::setStringValue(OUString const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -644,7 +644,7 @@ void RegistryKey::setStringValue(OUString const &)
css::uno::Sequence< OUString > RegistryKey::getStringListValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException)
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -659,7 +659,7 @@ css::uno::Sequence< OUString > RegistryKey::getStringListValue()
void RegistryKey::setStringListValue(
css::uno::Sequence< OUString > const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -669,7 +669,7 @@ void RegistryKey::setStringListValue(
css::uno::Sequence< sal_Int8 > RegistryKey::getBinaryValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException)
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid();
@@ -683,7 +683,7 @@ css::uno::Sequence< sal_Int8 > RegistryKey::getBinaryValue()
}
void RegistryKey::setBinaryValue(css::uno::Sequence< sal_Int8 > const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -692,7 +692,7 @@ void RegistryKey::setBinaryValue(css::uno::Sequence< sal_Int8 > const &)
css::uno::Reference< css::registry::XRegistryKey > RegistryKey::openKey(
OUString const & aKeyName)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid_RuntimeException();
@@ -709,7 +709,7 @@ css::uno::Reference< css::registry::XRegistryKey > RegistryKey::openKey(
css::uno::Reference< css::registry::XRegistryKey > RegistryKey::createKey(
OUString const &)
throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -718,14 +718,14 @@ css::uno::Reference< css::registry::XRegistryKey > RegistryKey::createKey(
void RegistryKey::closeKey()
throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid_RuntimeException();
}
void RegistryKey::deleteKey(OUString const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -734,7 +734,7 @@ void RegistryKey::deleteKey(OUString const &)
css::uno::Sequence< css::uno::Reference< css::registry::XRegistryKey > >
RegistryKey::openKeys()
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -742,7 +742,7 @@ RegistryKey::openKeys()
}
css::uno::Sequence< OUString > RegistryKey::getKeyNames()
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
throw css::uno::RuntimeException(
"com.sun.star.configuration.ConfigurationRegistry: not implemented",
@@ -750,7 +750,7 @@ css::uno::Sequence< OUString > RegistryKey::getKeyNames()
}
sal_Bool RegistryKey::createLink(OUString const &, OUString const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid_RuntimeException();
@@ -758,14 +758,14 @@ sal_Bool RegistryKey::createLink(OUString const &, OUString const &)
}
void RegistryKey::deleteLink(OUString const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid_RuntimeException();
}
OUString RegistryKey::getLinkTarget(OUString const &)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid_RuntimeException();
@@ -773,7 +773,7 @@ OUString RegistryKey::getLinkTarget(OUString const &)
}
OUString RegistryKey::getResolvedName(OUString const & aKeyName)
- throw (css::registry::InvalidRegistryException, css::uno::RuntimeException)
+ throw (css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception)
{
osl::MutexGuard g(service_.mutex_);
service_.checkValid_RuntimeException();