6e23af2ba3
For better readbility and discoverability. Also rename String.compareTo parameter to "other", since that is the name of parameter of other compareTo's
10 lines
215 B
Kotlin
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
|
|
}
|