tryCatchIgnore

inline fun tryCatchIgnore(block: () -> Unit)

tryCatchIgnore used when you want to ignore catch block if an exception is thrown.

Example:

tryCatchIgnore {
...
throw Exception("throw")
}

Since

1.1.0