Interface ThrowableCauseExtractor
public interface ThrowableCauseExtractor
Interface for handlers extracting the cause out of a specific 
Throwable type.- Since:
- 2.0
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionextractCause(Throwable throwable) Extracts the cause from the providedThrowable.
- 
Method Details- 
extractCauseExtracts the cause from the providedThrowable.- Parameters:
- throwable- the- Throwable
- Returns:
- the extracted cause (maybe null)
- Throws:
- IllegalArgumentException- if- throwableis- nullor otherwise considered invalid for the implementation
 
 
-