/* * Copyright 2012-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.boot.autoconfigure.web.servlet.error; import java.util.Map; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.context.request.RequestAttributes; import org.springframework.web.servlet.ModelAndView; /** * Provides access to error attributes which can be logged or presented to the user. * * @author Phillip Webb * @since 1.1.0 * @see DefaultErrorAttributes */ public interface ErrorAttributes { /** * Returns a {@link Map} of the error attributes. The map can be used as the model of * an error page {@link ModelAndView}, or returned as a {@link ResponseBody}. * @param requestAttributes the source request attributes * @param includeStackTrace if stack trace elements should be included * @return a map of error attributes */ Map<String, Object> getErrorAttributes(RequestAttributes requestAttributes, boolean includeStackTrace); /** * Return the underlying cause of the error or {@code null} if the error cannot be * extracted. * @param requestAttributes the source request attributes * @return the {@link Exception} that caused the error or {@code null} */ Throwable getError(RequestAttributes requestAttributes); }