how to use try catch in kotlin code example
Example 1: Kotlin try
try {
// some code
}
catch (e: SomeException) {
// handler
}
finally {
// optional finally block
}
Example 2: kotlin throw exception
throw Exception("Exception message")