summaryrefslogtreecommitdiff
path: root/chart2/source/inc/RegressionCurveCalculator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/inc/RegressionCurveCalculator.hxx')
-rw-r--r--chart2/source/inc/RegressionCurveCalculator.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/chart2/source/inc/RegressionCurveCalculator.hxx b/chart2/source/inc/RegressionCurveCalculator.hxx
index f931a952213b..0128d4c0bc80 100644
--- a/chart2/source/inc/RegressionCurveCalculator.hxx
+++ b/chart2/source/inc/RegressionCurveCalculator.hxx
@@ -63,16 +63,16 @@ protected:
sal_Bool aForceIntercept,
double aInterceptValue,
sal_Int32 aPeriod)
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual void SAL_CALL recalculateRegression(
const com::sun::star::uno::Sequence< double >& aXValues,
const com::sun::star::uno::Sequence< double >& aYValues )
- throw (com::sun::star::uno::RuntimeException) = 0;
+ throw (com::sun::star::uno::RuntimeException, std::exception) = 0;
virtual double SAL_CALL getCurveValue( double x )
throw (com::sun::star::lang::IllegalArgumentException,
- com::sun::star::uno::RuntimeException) = 0;
+ com::sun::star::uno::RuntimeException, std::exception) = 0;
virtual com::sun::star::uno::Sequence< com::sun::star::geometry::RealPoint2D > SAL_CALL getCurveValues(
double min,
@@ -82,18 +82,18 @@ protected:
const com::sun::star::uno::Reference< com::sun::star::chart2::XScaling >& xScalingY,
sal_Bool bMaySkipPointsInCalculation )
throw (com::sun::star::lang::IllegalArgumentException,
- com::sun::star::uno::RuntimeException);
+ com::sun::star::uno::RuntimeException, std::exception);
virtual double SAL_CALL getCorrelationCoefficient()
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getRepresentation()
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getFormattedRepresentation(
const com::sun::star::uno::Reference< com::sun::star::util::XNumberFormatsSupplier >& xNumFmtSupplier,
sal_Int32 nNumberFormatKey )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
};
} // namespace chart