fixed a type error in array parameter
(String[] instead of Object[] as in super constructor ... and all other exceptions) fixed a typo git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@666287 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1786844fd7
commit
71174b5602
|
@ -21,7 +21,7 @@ import org.apache.commons.math.MathException;
|
|||
|
||||
/**
|
||||
* This exception is made available to users to report
|
||||
* the error conditions that are trigegred while computing
|
||||
* the error conditions that are triggered while computing
|
||||
* the differential equations.
|
||||
* @version $Revision$ $Date$
|
||||
* @since 1.2
|
||||
|
@ -34,7 +34,7 @@ public class DerivativeException
|
|||
* @param specifier format specifier (to be translated)
|
||||
* @param parts to insert in the format (no translation)
|
||||
*/
|
||||
public DerivativeException(String specifier, String[] parts) {
|
||||
public DerivativeException(String specifier, Object[] parts) {
|
||||
super(specifier, parts);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue