summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorPeter Burow <pb@openoffice.org>2001-01-25 07:27:35 +0000
committerPeter Burow <pb@openoffice.org>2001-01-25 07:27:35 +0000
commita69632520f34b15794f3e8f8befc496b08a1a315 (patch)
tree44d3d57142cbe08653e8575a48f16cfc4e4147c9 /unotools
parentc878c196a20832cc245d3640198f3e7df5f29009 (diff)
fix: no assertion on CommandException
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/ucbhelper/ucbhelper.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/unotools/source/ucbhelper/ucbhelper.cxx b/unotools/source/ucbhelper/ucbhelper.cxx
index 2b6d3e3e1f94..efc42918e8f7 100644
--- a/unotools/source/ucbhelper/ucbhelper.cxx
+++ b/unotools/source/ucbhelper/ucbhelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ucbhelper.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mba $ $Date: 2001-01-16 15:28:25 $
+ * last change: $Author: pb $ $Date: 2001-01-25 08:27:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -349,9 +349,9 @@ Sequence < OUString > UCBContentHelper::GetFolderContents( const String& rFolder
}
catch( ::com::sun::star::ucb::CommandAbortedException& )
{
- DBG_ERRORFILE( "createCursor: CommandAbortedException" );
+ // folder not exists?
}
- catch( ... )
+ catch( Exception& )
{
DBG_ERRORFILE( "createCursor: Any other exception" );
}
@@ -662,3 +662,4 @@ sal_Bool UCBContentHelper::FindInPath( const String& rPath, const String& rName,
}
};
+