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