summaryrefslogtreecommitdiff
path: root/chart2/source/view/main/Linear3DTransformation.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/view/main/Linear3DTransformation.cxx')
-rw-r--r--chart2/source/view/main/Linear3DTransformation.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/view/main/Linear3DTransformation.cxx b/chart2/source/view/main/Linear3DTransformation.cxx
index c909d24cdfa2..30597f83f578 100644
--- a/chart2/source/view/main/Linear3DTransformation.cxx
+++ b/chart2/source/view/main/Linear3DTransformation.cxx
@@ -40,7 +40,7 @@ Linear3DTransformation::~Linear3DTransformation()
Sequence< double > SAL_CALL Linear3DTransformation::transform(
const Sequence< double >& rSourceValues )
throw (RuntimeException,
- lang::IllegalArgumentException)
+ lang::IllegalArgumentException, std::exception)
{
double fX = rSourceValues[0];
double fY = rSourceValues[1];
@@ -82,13 +82,13 @@ Sequence< double > SAL_CALL Linear3DTransformation::transform(
}
sal_Int32 SAL_CALL Linear3DTransformation::getSourceDimension()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return 3;
}
sal_Int32 SAL_CALL Linear3DTransformation::getTargetDimension()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return 3;
}