org.springframework.http.converter
Class HttpMessageNotWritableException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.http.converter.HttpMessageConversionException
                      extended by org.springframework.http.converter.HttpMessageNotWritableException
All Implemented Interfaces:
Serializable

public class HttpMessageNotWritableException
extends HttpMessageConversionException

Thrown by HttpMessageConverter implementations when the write method fails.

Since:
3.0
Author:
Arjen Poutsma
See Also:
Serialized Form

Constructor Summary
HttpMessageNotWritableException(String msg)
          Create a new HttpMessageNotWritableException.
HttpMessageNotWritableException(String msg, Throwable cause)
          Create a new HttpMessageNotWritableException.
 
Method Summary
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HttpMessageNotWritableException

public HttpMessageNotWritableException(String msg)
Create a new HttpMessageNotWritableException.

Parameters:
msg - the detail message

HttpMessageNotWritableException

public HttpMessageNotWritableException(String msg,
                                       Throwable cause)
Create a new HttpMessageNotWritableException.

Parameters:
msg - the detail message
cause - the root cause (if any)