Answers for "kotlin throw exception"

7

Kotlin try

try {
    // some code
}
catch (e: SomeException) {
    // handler
}
finally {
    // optional finally block
}
Posted by: Guest on May-09-2020
1

Kotlin throws

@Throws(SomeException::class)
fun raise() {
	throw SomeException("Mwehp!")
}
Posted by: Guest on May-10-2020
1

kotlin throw exception

throw Exception("Exception message")
Posted by: Guest on May-09-2020

Browse Popular Code Answers by Language