summaryrefslogtreecommitdiff
path: root/chart2/source/model/main/CartesianCoordinateSystem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/model/main/CartesianCoordinateSystem.cxx')
-rw-r--r--chart2/source/model/main/CartesianCoordinateSystem.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/model/main/CartesianCoordinateSystem.cxx b/chart2/source/model/main/CartesianCoordinateSystem.cxx
index 3fa8e294a299..b594f6c50912 100644
--- a/chart2/source/model/main/CartesianCoordinateSystem.cxx
+++ b/chart2/source/model/main/CartesianCoordinateSystem.cxx
@@ -58,20 +58,20 @@ CartesianCoordinateSystem::~CartesianCoordinateSystem()
// ____ XCoordinateSystem ____
OUString SAL_CALL CartesianCoordinateSystem::getCoordinateSystemType()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CHART2_COOSYSTEM_CARTESIAN_SERVICE_NAME;
}
OUString SAL_CALL CartesianCoordinateSystem::getViewServiceName()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CHART2_COOSYSTEM_CARTESIAN_VIEW_SERVICE_NAME;
}
// ____ XCloneable ____
uno::Reference< util::XCloneable > SAL_CALL CartesianCoordinateSystem::createClone()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return Reference< util::XCloneable >( new CartesianCoordinateSystem( *this ));
}