Files
kotlin-fork/core/builtins/native/kotlin/Throwable.kt
T
Alexander Udalov 6e23af2ba3 Split Library.kt into several files
For better readbility and discoverability. Also rename String.compareTo
parameter to "other", since that is the name of parameter of other compareTo's
2014-03-02 19:55:27 +04:00

10 lines
215 B
Kotlin

package kotlin
public open class Throwable(message: String? = null, cause: Throwable? = null) {
public fun getMessage(): String?
public fun getCause(): Throwable?
public fun printStackTrace(): Unit
}