Home / Class/ UnsupportedConfigDataLocationException Class — spring-boot Architecture

UnsupportedConfigDataLocationException Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/UnsupportedConfigDataLocationException.java lines 26–47

public class UnsupportedConfigDataLocationException extends ConfigDataException {

	private final ConfigDataLocation location;

	/**
	 * Create a new {@link UnsupportedConfigDataLocationException} instance.
	 * @param location the unsupported location
	 */
	UnsupportedConfigDataLocationException(ConfigDataLocation location) {
		super("Unsupported config data location '" + location + "'", null);
		this.location = location;
	}

	/**
	 * Return the unsupported location reference.
	 * @return the unsupported location reference
	 */
	public ConfigDataLocation getLocation() {
		return this.location;
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free