Home / Class/ ConnectionDetailsFactoryNotFoundException Class — spring-boot Architecture

ConnectionDetailsFactoryNotFoundException Class — spring-boot Architecture

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

Entity Profile

Source Code

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

public class ConnectionDetailsFactoryNotFoundException extends RuntimeException {

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

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

	public ConnectionDetailsFactoryNotFoundException(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