summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/prov.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/prov.cxx')
-rw-r--r--ucb/source/ucp/file/prov.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/prov.cxx b/ucb/source/ucp/file/prov.cxx
index c222655f4b73..eac7d2b3b01b 100644
--- a/ucb/source/ucp/file/prov.cxx
+++ b/ucb/source/ucp/file/prov.cxx
@@ -351,7 +351,7 @@ XPropertySetInfoImpl2::getPropertyByName( const OUString& aName )
if (pProp != m_seq.end())
return *pProp;
- throw UnknownPropertyException( THROW_WHERE );
+ throw UnknownPropertyException( aName );
}
@@ -416,7 +416,7 @@ FileProvider::setPropertyValue( const OUString& aPropertyName,
if( !(aPropertyName == "FileSystemNotation" ||
aPropertyName == "HomeDirectory" ||
aPropertyName == "HostName") )
- throw UnknownPropertyException( THROW_WHERE );
+ throw UnknownPropertyException( aPropertyName );
}
@@ -438,7 +438,7 @@ FileProvider::getPropertyValue(
return Any(m_HostName);
}
else
- throw UnknownPropertyException( THROW_WHERE );
+ throw UnknownPropertyException( aPropertyName );
}