static <In,Out> Function<In,Out> |
IoToUncheckedFunction.wrap(IoToUncheckedFunction<In,Out> wrapped) |
Wraps the designated Function by wrapping the thrown IOException in a
UncheckedIOException .
|
static <In,Out> Function<In,Out> |
IoToUncheckedFunction.wrap(IoToUncheckedFunction<In,Out> wrapped,
String msg) |
Wraps the designated Function by wrapping the thrown IOException in a
UncheckedIOException with the message of the designated supplier.
|
static <In,Out> Function<In,Out> |
IoToUncheckedFunction.wrap(IoToUncheckedFunction<In,Out> wrapped,
Function<? super In,String> msgFunc) |
Wraps the designated Function by wrapping the thrown IOException in a
UncheckedIOException with the message of the designated supplier.
|
static <In,Out> Function<In,Out> |
IoToUncheckedFunction.wrap(IoToUncheckedFunction<In,Out> wrapped,
Supplier<String> msgSupp) |
Wraps the designated Function by wrapping the thrown IOException in
a UncheckedIOException with the message of the designated supplier.
|