Home / Class/ TestException Class — spring-boot Architecture

TestException Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/origin/OriginTests.java lines 95–109

	static class TestException extends RuntimeException implements OriginProvider {

		private final @Nullable Origin origin;

		TestException(@Nullable Origin origin, @Nullable Throwable cause) {
			super(cause);
			this.origin = origin;
		}

		@Override
		public @Nullable Origin getOrigin() {
			return this.origin;
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free