Files
kotlin-fork/libraries/stdlib/src/kotlin/collections/Exceptions.kt
T
2015-03-05 16:32:22 +01:00

7 lines
441 B
Kotlin

package kotlin
deprecated("This exception is no longer thrown by any standard library classes and is going to be removed")
public class EmptyIterableException(private val it: Iterable<*>) : RuntimeException("$it is empty")
deprecated("This exception is no longer thrown by any standard library classes and is going to be removed")
public class DuplicateKeyException(message : String = "Duplicate keys detected") : RuntimeException(message)