Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. fun main() {
  2.   try {
  3.   // função de processamento de notas
  4.   } catch (ex: ArithmeticException) { 
  5.   // tratando a exceção ArithmeticException
  6.   } catch (ex: NumberFormatException) { 
  7.   // tratando a exceção NumberFormatException
  8.   } catch (ex: Exception) { 
  9.   // tratando as exceções mais genéricas
  10.   }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement