Class HttpMessageNotReadableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.http.converter.HttpMessageConversionException
org.springframework.http.converter.HttpMessageNotReadableException
- All Implemented Interfaces:
Serializable
Thrown by
HttpMessageConverter
implementations when the
HttpMessageConverter.read(java.lang.Class<? extends T>, org.springframework.http.HttpInputMessage)
method fails.- Since:
- 3.0
- Author:
- Arjen Poutsma, Juergen Hoeller
- See Also:
-
Constructor Summary
ConstructorDescriptionHttpMessageNotReadableException
(String msg, @Nullable Throwable cause, HttpInputMessage httpInputMessage) Create a new HttpMessageNotReadableException.HttpMessageNotReadableException
(String msg, HttpInputMessage httpInputMessage) Create a new HttpMessageNotReadableException. -
Method Summary
Modifier and TypeMethodDescriptionReturn the original HTTP message.Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HttpMessageNotReadableException
Create a new HttpMessageNotReadableException.- Parameters:
msg
- the detail messagehttpInputMessage
- the original HTTP message- Since:
- 5.1
-
HttpMessageNotReadableException
public HttpMessageNotReadableException(String msg, @Nullable Throwable cause, HttpInputMessage httpInputMessage) Create a new HttpMessageNotReadableException.- Parameters:
msg
- the detail messagecause
- the root cause (if any)httpInputMessage
- the original HTTP message- Since:
- 5.1
-
-
Method Details
-
getHttpInputMessage
Return the original HTTP message.- Since:
- 5.1
-