safelyWithoutExceptions

suspend fun <T> safelyWithoutExceptions(onException: ExceptionHandler<T?> = defaultSafelyWithoutExceptionHandlerWithNull, block: suspend CoroutineScope.() -> 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)