diff options
author | Ocke Janssen <oj@openoffice.org> | 2000-11-13 06:14:23 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2000-11-13 06:14:23 +0000 |
commit | ca830ca8c511acedd5380de26de4203adbf0f880 (patch) | |
tree | 2a3ada5bf43af3b1e489cfb5d6e6a86c75fdd284 /connectivity | |
parent | 382984f3c97eb58e91d6340610f1955752713046 (diff) |
change catch
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/parse/sqlnode.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/connectivity/source/parse/sqlnode.cxx b/connectivity/source/parse/sqlnode.cxx index 5c2a3c7d5091..a17d77412b08 100644 --- a/connectivity/source/parse/sqlnode.cxx +++ b/connectivity/source/parse/sqlnode.cxx @@ -2,9 +2,9 @@ * * $RCSfile: sqlnode.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: oj $ $Date: 2000-11-09 08:48:25 $ + * last change: $Author: oj $ $Date: 2000-11-13 07:14:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -751,8 +751,9 @@ void OSQLParseNode::likeNodeToStr(::rtl::OUString& rString, const SQLParseNodePa rParam.xField->getPropertyValue(::rtl::OUString::createFromAscii("Name")) >>= aString; aFieldName = aString.getStr(); } - catch ( ... ) + catch ( Exception& ) { + OSL_ENSHURE(0,"OSQLParseNode::likeNodeToStr Exception occured!"); } const OSQLParseNode* pCol = m_aChilds[0]->getChild(m_aChilds[0]->count()-1); |