tryCatchNull
tryCatchNull used when you want to return null if an exception is thrown.
Example:
tryCatchNull {
throw Exception("throw")
num++
} // null
tryCatchNull {
var num = 0
++num
} // 1
Content copied to clipboard
Since
1.1.0