safelyWithoutExceptions

suspend fun <T> safelyWithoutExceptions(onException: ExceptionHandler<T> = defaultSafelyExceptionHandler, block: suspend () -> T): T?(source)

Shortcut for safely with exception handler, that as expected must return null in case of impossible creating of result from exception (instead of throwing it, by default always returns null)