tryCatchBoolean
tryCatchBoolean used when you want to return false if an exception is thrown.
Example:
tryCatchBoolean {
...
throw Exception("throw")
} // false
tryCatchBoolean {
...
} // true
Content copied to clipboard
Since
1.1.0