summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpputools/source/unoexe/unoexe.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpputools/source/unoexe/unoexe.cxx b/cpputools/source/unoexe/unoexe.cxx
index a8ddbdf22a07..f6880fd8f560 100644
--- a/cpputools/source/unoexe/unoexe.cxx
+++ b/cpputools/source/unoexe/unoexe.cxx
@@ -84,6 +84,7 @@ static const char arUsingText[] =
" [--quiet]\n"
" [-- Argument1 Argument2 ...]\n";
+/// @throws RuntimeException
static bool readOption( OUString * pValue, const sal_Char * pOpt,
sal_uInt32 * pnIndex, const OUString & aArg)
throw (RuntimeException)
@@ -140,6 +141,7 @@ static bool readOption( bool * pbOpt, const sal_Char * pOpt,
return false;
}
+/// @throws Exception
template< class T >
void createInstance(
Reference< T > & rxOut,
@@ -166,6 +168,7 @@ void createInstance(
}
}
+/// @throws Exception
static Reference< XInterface > loadComponent(
const Reference< XComponentContext > & xContext,
const OUString & rImplName, const OUString & rLocation )
@@ -251,6 +254,7 @@ class OInstanceProvider
OUString _aInstanceName;
+ /// @throws Exception
inline Reference< XInterface > createInstance() throw (Exception);
public: