Interface ThrowingCustomizer<T>
- Type Parameters:
- T- The type of input.
- All Superinterfaces:
- Customizer<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A 
Customizer that allows invocation of code that throws a checked exception.- 
Method SummaryModifier and TypeMethodDescriptiondefault voidDefaultCustomizer.customize(Object)that wraps any thrown checked exceptions (by default in aRuntimeException).voidPerforms the customization on the given object, possibly throwing a checked exception.
- 
Method Details- 
customizeDefaultCustomizer.customize(Object)that wraps any thrown checked exceptions (by default in aRuntimeException).- Specified by:
- customizein interface- Customizer<T>
- Parameters:
- t- the object to customize
 
- 
customizeWithExceptionPerforms the customization on the given object, possibly throwing a checked exception.- Parameters:
- t- the object to customize
- Throws:
- Exception- on error
 
 
-