Class RequestBodyEncodingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.web.reactive.function.client.WebClientException
org.springframework.data.elasticsearch.client.reactive.RequestBodyEncodingException
- All Implemented Interfaces:
Serializable
Exception thrown if the request body cannot be properly encoded.
- Since:
- 3.2
- Author:
- Christoph Strobl, Mark Paluch
- See Also:
-
Constructor Summary
ConstructorDescriptionRequestBodyEncodingException
(String msg, Throwable ex) Construct a new instance ofRequestBodyEncodingException
with the given message and exception. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RequestBodyEncodingException
Construct a new instance ofRequestBodyEncodingException
with the given message and exception.- Parameters:
msg
- the messageex
- the exception
-