summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2001-01-17 15:24:57 +0000
committerMathias Bauer <mba@openoffice.org>2001-01-17 15:24:57 +0000
commit8880ee0b59aef200f67d01e4a9ea22cc265af436 (patch)
treead37e00687338c402e7a7e1effbbd7d6191ca3f8 /unotools
parentf8d2a4b7c0db90d5c715724ab46d6caecdde507f (diff)
#80996#: catch CommandAbortedException without Assertion
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/ucbhelper/ucbstreamhelper.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/unotools/source/ucbhelper/ucbstreamhelper.cxx b/unotools/source/ucbhelper/ucbstreamhelper.cxx
index 7d2f4538707e..c932303756ce 100644
--- a/unotools/source/ucbhelper/ucbstreamhelper.cxx
+++ b/unotools/source/ucbhelper/ucbstreamhelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ucbstreamhelper.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: mba $ $Date: 2000-11-30 16:40:21 $
+ * last change: $Author: mba $ $Date: 2001-01-17 16:24:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -128,6 +128,9 @@ SvStream* UcbStreamHelper::CreateStream( const String& rFileName, StreamMode eOp
pStream->SetError( xLockBytes->GetError() );
}
}
+ catch ( CommandAbortedException e )
+ {
+ }
catch ( Exception e )
{
DBG_ERROR( "Any other exception!" );