summaryrefslogtreecommitdiff
path: root/chart2/source/inc/ExponentialRegressionCurveCalculator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/inc/ExponentialRegressionCurveCalculator.hxx')
-rw-r--r--chart2/source/inc/ExponentialRegressionCurveCalculator.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/chart2/source/inc/ExponentialRegressionCurveCalculator.hxx b/chart2/source/inc/ExponentialRegressionCurveCalculator.hxx
index f6400b090329..ba08bb13dfd1 100644
--- a/chart2/source/inc/ExponentialRegressionCurveCalculator.hxx
+++ b/chart2/source/inc/ExponentialRegressionCurveCalculator.hxx
@@ -39,12 +39,9 @@ private:
// ____ XRegressionCurveCalculator ____
virtual void SAL_CALL recalculateRegression(
const css::uno::Sequence<double>& aXValues,
- const css::uno::Sequence<double>& aYValues )
- throw (css::uno::RuntimeException, std::exception) override;
+ const css::uno::Sequence<double>& aYValues ) override;
- virtual double SAL_CALL getCurveValue( double x )
- throw (css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception) override;
+ virtual double SAL_CALL getCurveValue( double x ) override;
virtual css::uno::Sequence<css::geometry::RealPoint2D> SAL_CALL getCurveValues(
double min,
@@ -52,9 +49,7 @@ private:
sal_Int32 nPointCount,
const css::uno::Reference<css::chart2::XScaling>& xScalingX,
const css::uno::Reference<css::chart2::XScaling>& xScalingY,
- sal_Bool bMaySkipPointsInCalculation )
- throw (css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception) override;
+ sal_Bool bMaySkipPointsInCalculation ) override;
// formula is: f(x) = m_fSign * exp(m_fLogIntercept) * exp( m_fLogSlope * x )
// mathematical model f(x) = Intercept * Slope^x