summaryrefslogtreecommitdiff
path: root/configmgr/source/inc/configexcept.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/inc/configexcept.hxx')
-rw-r--r--configmgr/source/inc/configexcept.hxx21
1 files changed, 1 insertions, 20 deletions
diff --git a/configmgr/source/inc/configexcept.hxx b/configmgr/source/inc/configexcept.hxx
index b982de7a1491..fd39c68709b2 100644
--- a/configmgr/source/inc/configexcept.hxx
+++ b/configmgr/source/inc/configexcept.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: configexcept.hxx,v $
- * $Revision: 1.6 $
+ * $Revision: 1.6.4.1 $
*
* This file is part of OpenOffice.org.
*
@@ -89,25 +89,6 @@ namespace configmgr
virtual OUString message() const;
};
//-------------------------------------------------------------------------
-
- class WrappedUnoException : public Exception
- {
- uno::Any m_aUnoException;
- public:
- WrappedUnoException(uno::Any const& aUnoException);
-
- OUString extractMessage() const;
- uno::Exception extractUnoException() const;
- uno::Any const& getAnyUnoException() const;
-
- virtual OUString message() const;
- };
- template <class Except>
- WrappedUnoException rethrowWrapped(Except const& anException)
- {
- throw WrappedUnoException( uno::makeAny(anException) );
- }
- //-------------------------------------------------------------------------
}
//-----------------------------------------------------------------------------