Package io.microsphere.lang.function
Interface ThrowableBiFunction.ExceptionHandler<T,U,R>
-
- Type Parameters:
T
- the first argument typeU
- the second argument typeR
- the return type
- Enclosing interface:
- ThrowableBiFunction<T,U,R>
public static interface ThrowableBiFunction.ExceptionHandler<T,U,R>
The handler interface forexception
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
handle(T first, U second, java.lang.Throwable failure)
Handle the exception with the function arguments
-