V1
- Input type.V2
- Input type.V3
- Input type.V4
- Input type.@FunctionalInterface public static interface SneakyThrows.Consumer4<V1,V2,V3,V4>
SneakyThrows.Consumer
.
This class rethrow any exception using the SneakyThrows.propagate(Throwable)
technique.Modifier and Type | Method and Description |
---|---|
default void |
accept(V1 v1,
V2 v2,
V3 v3,
V4 v4)
Performs this operation on the given arguments and throw any exception using
SneakyThrows.propagate(Throwable) method. |
void |
tryAccept(V1 v1,
V2 v2,
V3 v3,
V4 v4)
Performs this operation on the given arguments.
|
void tryAccept(V1 v1, V2 v2, V3 v3, V4 v4) throws Exception
v1
- Argument.v2
- Argument.v3
- Argument.v4
- Argument.Exception
- If something goes wrong.default void accept(V1 v1, V2 v2, V3 v3, V4 v4)
SneakyThrows.propagate(Throwable)
method.v1
- Argument.v2
- Argument.v3
- Argument.v4
- Argument.Copyright © 2020. All rights reserved.