summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/PivotTableDataSequence.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/unoobj/PivotTableDataSequence.cxx')
-rw-r--r--sc/source/ui/unoobj/PivotTableDataSequence.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/PivotTableDataSequence.cxx b/sc/source/ui/unoobj/PivotTableDataSequence.cxx
index be583042f1d7..706cedd3e025 100644
--- a/sc/source/ui/unoobj/PivotTableDataSequence.cxx
+++ b/sc/source/ui/unoobj/PivotTableDataSequence.cxx
@@ -220,7 +220,7 @@ void SAL_CALL PivotTableDataSequence::setPropertyValue(const OUString& rProperty
|| rPropertyName == SC_UNONAME_HAS_STRING_LABEL)
{}
else
- throw beans::UnknownPropertyException();
+ throw beans::UnknownPropertyException(rPropertyName);
}
uno::Any SAL_CALL PivotTableDataSequence::getPropertyValue(const OUString& rPropertyName)
@@ -244,7 +244,7 @@ uno::Any SAL_CALL PivotTableDataSequence::getPropertyValue(const OUString& rProp
aReturn <<= false;
}
else
- throw beans::UnknownPropertyException();
+ throw beans::UnknownPropertyException(rPropertyName);
return aReturn;
}