diff --git a/src/main/java/org/apache/commons/math3/FieldElement.java b/src/main/java/org/apache/commons/math3/FieldElement.java index 3c4f58615f..14dc22134d 100644 --- a/src/main/java/org/apache/commons/math3/FieldElement.java +++ b/src/main/java/org/apache/commons/math3/FieldElement.java @@ -63,10 +63,8 @@ public interface FieldElement { /** Compute this ÷ a. * @param a element to add * @return a new element representing this ÷ a - * @exception ArithmeticException if a is the zero of the - * additive operation (i.e. additive identity) */ - T divide(T a) throws ArithmeticException; + T divide(T a); /** * Returns the multiplicative inverse of {@code this} element.