hi Kirill, On 28/01/2010 11:08, K S wrote: > Does anyone know about this exception? > > (com::sun::star::lang::WrappedTargetRuntimeException) >
that is a very generic exception; the type won't tell you much. the UNO API interfaces have exception signatures, and if an implementation calls into some other API, and gets and exception that it can neither handle itself nor re-throw (because it is not in its exception specification), then it will throw a WrappedTargetRuntimeException, which is a RuntimeException and may thus be thrown by _any_ UNO method. see here: http://api.openoffice.org/docs/common/ref/com/sun/star/lang/WrappedTargetRuntimeException.html you would have to look at the TargetException member to (maybe) find out what caused it. -- "If you think C++ is not overly complicated, just what is a protected abstract virtual base pure virtual private destructor, and when was the last time you needed one?" -- Tom Cargil, _C++_Journal_ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
