Replaced obsolete exceptions.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1178213 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
05cdc9f273
commit
9f0e8ef283
|
@ -23,7 +23,6 @@ import java.io.Serializable;
|
|||
import java.util.ConcurrentModificationException;
|
||||
import java.util.NoSuchElementException;
|
||||
|
||||
import org.apache.commons.math.MathRuntimeException;
|
||||
import org.apache.commons.math.exception.util.LocalizedFormats;
|
||||
|
||||
/**
|
||||
|
@ -527,10 +526,10 @@ public class OpenIntToDoubleHashMap implements Serializable {
|
|||
public int key()
|
||||
throws ConcurrentModificationException, NoSuchElementException {
|
||||
if (referenceCount != count) {
|
||||
throw MathRuntimeException.createConcurrentModificationException(LocalizedFormats.MAP_MODIFIED_WHILE_ITERATING);
|
||||
throw new ConcurrentModificationException();
|
||||
}
|
||||
if (current < 0) {
|
||||
throw MathRuntimeException.createNoSuchElementException(LocalizedFormats.ITERATOR_EXHAUSTED);
|
||||
throw new NoSuchElementException();
|
||||
}
|
||||
return keys[current];
|
||||
}
|
||||
|
@ -544,10 +543,10 @@ public class OpenIntToDoubleHashMap implements Serializable {
|
|||
public double value()
|
||||
throws ConcurrentModificationException, NoSuchElementException {
|
||||
if (referenceCount != count) {
|
||||
throw MathRuntimeException.createConcurrentModificationException(LocalizedFormats.MAP_MODIFIED_WHILE_ITERATING);
|
||||
throw new ConcurrentModificationException();
|
||||
}
|
||||
if (current < 0) {
|
||||
throw MathRuntimeException.createNoSuchElementException(LocalizedFormats.ITERATOR_EXHAUSTED);
|
||||
throw new NoSuchElementException();
|
||||
}
|
||||
return values[current];
|
||||
}
|
||||
|
@ -561,7 +560,7 @@ public class OpenIntToDoubleHashMap implements Serializable {
|
|||
throws ConcurrentModificationException, NoSuchElementException {
|
||||
|
||||
if (referenceCount != count) {
|
||||
throw MathRuntimeException.createConcurrentModificationException(LocalizedFormats.MAP_MODIFIED_WHILE_ITERATING);
|
||||
throw new ConcurrentModificationException();
|
||||
}
|
||||
|
||||
// advance on step
|
||||
|
@ -575,7 +574,7 @@ public class OpenIntToDoubleHashMap implements Serializable {
|
|||
} catch (ArrayIndexOutOfBoundsException e) {
|
||||
next = -2;
|
||||
if (current < 0) {
|
||||
throw MathRuntimeException.createNoSuchElementException(LocalizedFormats.ITERATOR_EXHAUSTED);
|
||||
throw new NoSuchElementException();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue