Home / Class/ DockerNotRunningException Class — spring-boot Architecture

DockerNotRunningException Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/DockerNotRunningException.java lines 27–44

public class DockerNotRunningException extends DockerException {

	private final String errorOutput;

	DockerNotRunningException(String errorOutput, Throwable cause) {
		super("Docker is not running", cause);
		this.errorOutput = errorOutput;
	}

	/**
	 * Return the error output returned from docker.
	 * @return the error output
	 */
	public String getErrorOutput() {
		return this.errorOutput;
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free