mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-17 22:03:50 +00:00
update safelyWithResult
This commit is contained in:
parent
623e0cd369
commit
04ef371337
@ -117,9 +117,7 @@ suspend inline fun <T> runCatchingSafely(
|
||||
|
||||
suspend inline fun <T> safelyWithResult(
|
||||
noinline block: suspend CoroutineScope.() -> T
|
||||
): Result<T> = runCatching {
|
||||
safely({ throw it }, block)
|
||||
}
|
||||
): Result<T> = runCatchingSafely(defaultSafelyExceptionHandler, block)
|
||||
|
||||
/**
|
||||
* Use this handler in cases you wish to include handling of exceptions by [defaultSafelyWithoutExceptionHandler] and
|
||||
|
Loading…
Reference in New Issue
Block a user