Home / Class/ ConfigDataException Class — spring-boot Architecture

ConfigDataException Class — spring-boot Architecture

Architecture documentation for the ConfigDataException class in ConfigDataException.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataException.java lines 28–39

public abstract class ConfigDataException extends RuntimeException {

	/**
	 * Create a new {@link ConfigDataException} instance.
	 * @param message the exception message
	 * @param cause the exception cause
	 */
	protected ConfigDataException(String message, @Nullable Throwable cause) {
		super(message, cause);
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free