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(Class, HttpInputMessage) method fails.- Since:
- 3.0
- Author:
- Arjen Poutsma, Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionHttpMessageNotReadableException(String msg, @Nullable Throwable cause, HttpInputMessage httpInputMessage) Create a new HttpMessageNotReadableException.HttpMessageNotReadableException(String msg, HttpInputMessage httpInputMessage) Create a new HttpMessageNotReadableException.
- 
Method SummaryModifier and TypeMethodDescriptionReturn the original HTTP message.Methods inherited from class NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
HttpMessageNotReadableExceptionCreate a new HttpMessageNotReadableException.- Parameters:
- msg- the detail message
- httpInputMessage- the original HTTP message
- Since:
- 5.1
 
- 
HttpMessageNotReadableExceptionpublic HttpMessageNotReadableException(String msg, @Nullable Throwable cause, HttpInputMessage httpInputMessage) Create a new HttpMessageNotReadableException.- Parameters:
- msg- the detail message
- cause- the root cause (if any)
- httpInputMessage- the original HTTP message
- Since:
- 5.1
 
 
- 
- 
Method Details- 
getHttpInputMessage
 
-