uncheckedCall

@Nullable
open fun <T> uncheckedCall(callable: Callable<T>): T(source)

Calls the given callable converting any thrown exception to an unchecked exception via throwAsUncheckedException

Return

The value returned by call

Parameters

callable

The callable to call

<T>

Callable's return type