static <In1,In2,Out> BiFunction<In1,In2,Out> |
IoToUncheckedBiFunction.wrap(IoToUncheckedBiFunction<In1,In2,Out> wrapped) |
Wraps the designated BiFunction by wrapping the thrown IOException in
a UncheckedIOException .
|
static <In1,In2,Out> BiFunction<In1,In2,Out> |
IoToUncheckedBiFunction.wrap(IoToUncheckedBiFunction<In1,In2,Out> wrapped,
String msg) |
Wraps the designated BiFunction by wrapping the thrown IOException in
a UncheckedIOException with the message of the designated supplier.
|
static <In1,In2,Out> BiFunction<In1,In2,Out> |
IoToUncheckedBiFunction.wrap(IoToUncheckedBiFunction<In1,In2,Out> wrapped,
BiFunction<? super In1,? super In2,String> msgBiFunc) |
Wraps the designated BiFunction by wrapping the thrown IOException in
a UncheckedIOException with the message of the designated supplier.
|
static <In1,In2,Out> BiFunction<In1,In2,Out> |
IoToUncheckedBiFunction.wrap(IoToUncheckedBiFunction<In1,In2,Out> wrapped,
Supplier<String> msgSupp) |
Wraps the designated BiFunction by wrapping the thrown IOException in
a UncheckedIOException with the message of the designated supplier.
|