Use NoSuchElementException instead of KeyMissingException. Deprecate KeyMissingException.

This commit is contained in:
Ilya Gorbunov
2015-06-22 21:17:51 +03:00
parent 9c7992abbb
commit d04e94c826
6 changed files with 25 additions and 16 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ public open class LinkedHashMap<K, V>(
) : HashMap<K, V>(initialCapacity, loadFactor)
library
public class NoSuchElementException(message: String? = null) : Exception() {}
public open class NoSuchElementException(message: String? = null) : Exception() {}
library
public trait Enumeration<E> {