Home / Function/ getExceptionTypeAndMessage() — spring-boot Function Reference

getExceptionTypeAndMessage() — spring-boot Function Reference

Architecture documentation for the getExceptionTypeAndMessage() function in BindFailureAnalyzer.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  6049f6ad_d20c_a5fd_1a98_afe95ba6a388["getExceptionTypeAndMessage()"]
  ec11b7fc_d191_7572_c238_34d1e7b79001["getMessage()"]
  ec11b7fc_d191_7572_c238_34d1e7b79001 -->|calls| 6049f6ad_d20c_a5fd_1a98_afe95ba6a388
  ec11b7fc_d191_7572_c238_34d1e7b79001["getMessage()"]
  6049f6ad_d20c_a5fd_1a98_afe95ba6a388 -->|calls| ec11b7fc_d191_7572_c238_34d1e7b79001
  7437ce23_cb84_88cd_05ea_0748b72957a1["getName()"]
  6049f6ad_d20c_a5fd_1a98_afe95ba6a388 -->|calls| 7437ce23_cb84_88cd_05ea_0748b72957a1
  style 6049f6ad_d20c_a5fd_1a98_afe95ba6a388 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/BindFailureAnalyzer.java lines 103–106

	private String getExceptionTypeAndMessage(Throwable ex) {
		String message = ex.getMessage();
		return ex.getClass().getName() + (StringUtils.hasText(message) ? ": " + message : "");
	}

Domain

Subdomains

Called By

Frequently Asked Questions

What does getExceptionTypeAndMessage() do?
getExceptionTypeAndMessage() is a function in the spring-boot codebase.
What does getExceptionTypeAndMessage() call?
getExceptionTypeAndMessage() calls 2 function(s): getMessage, getName.
What calls getExceptionTypeAndMessage()?
getExceptionTypeAndMessage() is called by 1 function(s): getMessage.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free