You have the following code:
fun main() {
try {
println(42 / 0)
} catch (e: NumberFormatException) {
println("Incorrect format!")
} catch (e: Exception) {
println("I got you now!")
} catch (e: ArithmeticException) {
println("Division by zero!")
}
}
What exception will be caught?