public interface ErrorAttributes
DefaultErrorAttributes| Modifier and Type | Method and Description |
|---|---|
Throwable |
getError(WebRequest webRequest)
Return the underlying cause of the error or
null if the error cannot be
extracted. |
default Map<String,Object> |
getErrorAttributes(WebRequest webRequest,
boolean includeStackTrace)
Deprecated.
since 2.3.0 for removal in 2.5.0 in favor of
getErrorAttributes(WebRequest, ErrorAttributeOptions) |
default Map<String,Object> |
getErrorAttributes(WebRequest webRequest,
ErrorAttributeOptions options)
Returns a
Map of the error attributes. |
@Deprecated default Map<String,Object> getErrorAttributes(WebRequest webRequest, boolean includeStackTrace)
getErrorAttributes(WebRequest, ErrorAttributeOptions)Map of the error attributes. The map can be used as the model of
an error page ModelAndView, or returned as a
@ResponseBody.webRequest - the source requestincludeStackTrace - if stack trace element should be includeddefault Map<String,Object> getErrorAttributes(WebRequest webRequest, ErrorAttributeOptions options)
Map of the error attributes. The map can be used as the model of
an error page ModelAndView, or returned as a
@ResponseBody.webRequest - the source requestoptions - options for error attribute contentsThrowable getError(WebRequest webRequest)
null if the error cannot be
extracted.webRequest - the source requestException that caused the error or null