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 SummaryConstructorsConstructorDescriptionDeprecated.HttpMessageNotReadableException(String msg, Throwable cause) Deprecated.as of 5.1, in favor ofHttpMessageNotReadableException(String, Throwable, HttpInputMessage)HttpMessageNotReadableException(String msg, 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 org.springframework.core.NestedRuntimeExceptioncontains, getMessage, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
HttpMessageNotReadableExceptionDeprecated.as of 5.1, in favor ofHttpMessageNotReadableException(String, HttpInputMessage)Create a new HttpMessageNotReadableException.- Parameters:
- msg- the detail message
 
- 
HttpMessageNotReadableExceptionDeprecated.as of 5.1, in favor ofHttpMessageNotReadableException(String, Throwable, HttpInputMessage)Create a new HttpMessageNotReadableException.- Parameters:
- msg- the detail message
- cause- the root cause (if any)
 
- 
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- 
getHttpInputMessageReturn the original HTTP message.- Since:
- 5.1
 
 
- 
HttpMessageNotReadableException(String, HttpInputMessage)