- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.CommunicationException
-
- All Implemented Interfaces:
-
Serializable
public class CommunicationException extends NamingException
当客户端无法与目录或命名服务通信时,抛出此异常。 无法与服务通信可能是许多因素的结果,如网络分区,硬件或接口问题,客户端或服务器端的故障。 这个例外是用来捕捉这样的通信问题。适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 CommunicationException()
构造一个新的CommunicationException实例。CommunicationException(String explanation)
使用提供的参数构造一个新的CommunicationException实例。
-
方法摘要
-
Methods inherited from class javax.naming.NamingException
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
构造方法详细信息
-
CommunicationException
public CommunicationException(String explanation)
使用提供的参数构造一个新的CommunicationException实例。- 参数
-
explanation
- 有关此异常的其他详细信息。 - 另请参见:
-
Throwable.getMessage()
-
CommunicationException
public CommunicationException()
构造一个新的CommunicationException实例。
-
-