getSpringBootExceptionHandler() — spring-boot Function Reference
Architecture documentation for the getSpringBootExceptionHandler() function in SpringApplication.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 42397bc2_1bdd_1edc_b72e_69438be38265["getSpringBootExceptionHandler()"] 02ddb26f_c9ce_e846_edb5_eabdb932d9e3["registerLoggedException()"] 02ddb26f_c9ce_e846_edb5_eabdb932d9e3 -->|calls| 42397bc2_1bdd_1edc_b72e_69438be38265 a1057eb9_8bc1_4af2_9e06_f5426baf378a["handleExitCode()"] a1057eb9_8bc1_4af2_9e06_f5426baf378a -->|calls| 42397bc2_1bdd_1edc_b72e_69438be38265 64b7d2f3_7d95_459e_bd6c_8da90c487d70["isMainThread()"] 42397bc2_1bdd_1edc_b72e_69438be38265 -->|calls| 64b7d2f3_7d95_459e_bd6c_8da90c487d70 style 42397bc2_1bdd_1edc_b72e_69438be38265 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java lines 922–927
@Nullable SpringBootExceptionHandler getSpringBootExceptionHandler() {
if (isMainThread(Thread.currentThread())) {
return SpringBootExceptionHandler.forCurrentThread();
}
return null;
}
Domain
Subdomains
Calls
- isMainThread()
Called By
- handleExitCode()
- registerLoggedException()
Source
Frequently Asked Questions
What does getSpringBootExceptionHandler() do?
getSpringBootExceptionHandler() is a function in the spring-boot codebase.
What does getSpringBootExceptionHandler() call?
getSpringBootExceptionHandler() calls 1 function(s): isMainThread.
What calls getSpringBootExceptionHandler()?
getSpringBootExceptionHandler() is called by 2 function(s): handleExitCode, registerLoggedException.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free