Home / Class/ ConfigDataNotFoundException Class — spring-boot Architecture

ConfigDataNotFoundException Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataNotFoundException.java lines 29–46

public abstract class ConfigDataNotFoundException extends ConfigDataException implements OriginProvider {

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

	/**
	 * Return a description of actual referenced item that could not be found.
	 * @return a description of the referenced items
	 */
	public abstract String getReferenceDescription();

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free