“Попробуйте поймать Kotlin” Ответ

Котлин бросает исключение

throw Exception("Exception message")
Promofo

Попробуйте поймать Kotlin

try{
  // wirte here somethin that you thought it would throw expection
}
catch(e:Expection){ 
  e.printstacktrace() 
  // handle expection or write upper line of code
}
finally{
	// this block is optional 
  	// this will always run if expection come or not
}
android developer

Ответы похожие на “Попробуйте поймать Kotlin”

Вопросы похожие на “Попробуйте поймать Kotlin”

Смотреть популярные ответы по языку

Смотреть другие языки программирования