类 WebClientException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.web.reactive.function.client.WebClientException
- 所有已实现的接口:
Serializable
public abstract class WebClientException
extends cn.taketoday.core.NestedRuntimeException
Abstract base class for exception published by
WebClient in case of errors.- 从以下版本开始:
- 4.0
- 作者:
- Arjen Poutsma
- 另请参阅:
-
字段概要
字段 -
构造器概要
构造器构造器说明WebClientException(String msg) Construct a new instance ofWebClientExceptionwith the given message.WebClientException(String msg, Throwable ex) Construct a new instance ofWebClientExceptionwith the given message and exception. -
方法概要
从类继承的方法 cn.taketoday.core.NestedRuntimeException
contains, getMostSpecificCause, getNestedMessage, getRootCause
-
字段详细资料
-
serialVersionUID
private static final long serialVersionUID- 另请参阅:
-
-
构造器详细资料
-
WebClientException
Construct a new instance ofWebClientExceptionwith the given message.- 参数:
msg- the message
-
WebClientException
Construct a new instance ofWebClientExceptionwith the given message and exception.- 参数:
msg- the messageex- the exception
-