diff options
author | Sven Jacobi <sj@openoffice.org> | 2001-01-25 14:42:39 +0000 |
---|---|---|
committer | Sven Jacobi <sj@openoffice.org> | 2001-01-25 14:42:39 +0000 |
commit | 881f4eed41b737afc0ea3aad4bf377c2891679fc (patch) | |
tree | d8ea77679dcb9153bab4660f2ef5ec7ebc1a46cf | |
parent | 4cf626f02dd7feb8d62b98cb422c70e3d95b0263 (diff) |
#83082# added catch: CommandCreationException
-rw-r--r-- | svtools/source/filter.vcl/filter/filter.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/svtools/source/filter.vcl/filter/filter.cxx b/svtools/source/filter.vcl/filter/filter.cxx index 77e3aa1c3c95..f5b5d4c6c998 100644 --- a/svtools/source/filter.vcl/filter/filter.cxx +++ b/svtools/source/filter.vcl/filter/filter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: filter.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: sj $ $Date: 2000-12-19 13:37:59 $ + * last change: $Author: sj $ $Date: 2001-01-25 15:42:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -249,6 +249,10 @@ BOOL ImplDirEntryHelper::Exists( const INetURLObject& rObj ) { DBG_ERRORFILE( "CommandAbortedException" ); } + catch( ::com::sun::star::ucb::CommandCreationException& ) + { + DBG_ERRORFILE( "CommandCreationException" ); + } catch( ... ) { DBG_ERRORFILE( "Any other exception" ); |