Home / Class/ Error Class — spring-boot Architecture

Error Class — spring-boot Architecture

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

Entity Profile

Source Code

buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/transport/Errors.java lines 72–105

	public static class Error {

		private final String code;

		private final String message;

		@JsonCreator
		Error(String code, String message) {
			this.code = code;
			this.message = message;
		}

		/**
		 * Return the error code.
		 * @return the error code
		 */
		public String getCode() {
			return this.code;
		}

		/**
		 * Return the error message.
		 * @return the error message
		 */
		public String getMessage() {
			return this.message;
		}

		@Override
		public String toString() {
			return this.code + ": " + this.message;
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free