Home / Class/ ConnectionDetailsNotFoundException Class — spring-boot Architecture

ConnectionDetailsNotFoundException Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/service/connection/ConnectionDetailsNotFoundException.java lines 28–42

public class ConnectionDetailsNotFoundException extends RuntimeException {

	<S> ConnectionDetailsNotFoundException(S source) {
		this("No ConnectionDetails found for source '%s'".formatted(source));
	}

	public ConnectionDetailsNotFoundException(String message) {
		super(message);
	}

	public ConnectionDetailsNotFoundException(String message, 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