[
https://issues.apache.org/jira/browse/MATH-458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12977312#action_12977312
]
Gilles commented on MATH-458:
-----------------------------
One of the changes we set to implement in 3.0 is that all exceptions in
Commons-Math will be unchecked. And in fact they will all inherit from a single
{{MathRuntimeException}} base class (defined in the package {{exception}}).
The checked {{MathException}} will be removed.
> Interpolators: Remove "MathException" from the signature of the "interpolate"
> method
> ------------------------------------------------------------------------------------
>
> Key: MATH-458
> URL: https://issues.apache.org/jira/browse/MATH-458
> Project: Commons Math
> Issue Type: Bug
> Reporter: Gilles
> Assignee: Gilles
> Priority: Minor
> Fix For: 3.0
>
>
> The interfaces for the interpolators contain a "throws" clause that should be
> removed.
> E.g.
> {code}
> public interface UnivariateRealInterpolator {
> /**
> * Computes an interpolating function for the data set.
> * @param xval the arguments for the interpolation points
> * @param yval the values for the interpolation points
> * @return a function which interpolates the data set
> * @throws MathException if arguments violate assumptions made by the
> * interpolation algorithm
> */
> UnivariateRealFunction interpolate(double xval[], double yval[])
> throws MathException;
> }
> {code}
> Assumptions violation should be dealt with by throwing appropriate unchecked
> exceptions.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.