pabl0rg
class Example(iVal: String) { private val i: Int init { try { i = Integer.parseInt(iVal) } catch (fmtException: NumberFormatException) { System.exit(1) } } }