Home / Class/ ServiceNotReadyException Class — spring-boot Architecture

ServiceNotReadyException Class — spring-boot Architecture

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

Entity Profile

Relationship Graph

Source Code

core/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/ServiceNotReadyException.java lines 30–47

class ServiceNotReadyException extends RuntimeException {

	private final RunningService service;

	ServiceNotReadyException(RunningService service, String message) {
		this(service, message, null);
	}

	ServiceNotReadyException(RunningService service, String message, @Nullable Throwable cause) {
		super(message, cause);
		this.service = service;
	}

	RunningService getService() {
		return this.service;
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free