ExceptionDetails Class — spring-boot Architecture
Architecture documentation for the ExceptionDetails class in BindValidationFailureAnalyzer.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/BindValidationFailureAnalyzer.java lines 92–118
private static class ExceptionDetails {
private final List<ObjectError> errors;
private final @Nullable Object target;
private final Throwable cause;
ExceptionDetails(List<ObjectError> errors, @Nullable Object target, Throwable cause) {
this.errors = errors;
this.target = target;
this.cause = cause;
}
@Nullable Object getTarget() {
return this.target;
}
List<ObjectError> getErrors() {
return this.errors;
}
Throwable getCause() {
return this.cause;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free