Package org.springframework.boot
Interface SpringBootExceptionReporter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Callback interface used to support custom reporting of 
SpringApplication
 startup errors. reporters are loaded through the
 SpringFactoriesLoader and must declare a public constructor with a single
 ConfigurableApplicationContext parameter.- Since:
- 2.0.0
- See Also:
- 
- ApplicationContextAware
 
- 
Method SummaryModifier and TypeMethodDescriptionbooleanreportException(Throwable failure) Report a startup failure to the user.
- 
Method Details- 
reportExceptionReport a startup failure to the user.- Parameters:
- failure- the source failure
- Returns:
- trueif the failure was reported or- falseif default reporting should occur.
 
 
-