- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.PartialResultException
-
- All Implemented Interfaces:
-
Serializable
public class PartialResultException extends NamingException
抛出此异常以指示到目前为止返回或返回的结果是部分的,并且该操作无法完成。 例如,当列出上下文时,此异常指示返回的结果仅表示上下文中的一些绑定。适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 PartialResultException()
构造一个新的PartialResultException实例。PartialResultException(String explanation)
使用指定的说明消息构造异常的新实例。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
PartialResultException
public PartialResultException(String explanation)
使用指定的说明消息构造异常的新实例。 所有其他字段默认为null。- 参数
-
explanation
- 可能为空详细解释异常。
-
PartialResultException
public PartialResultException()
构造一个新的PartialResultException实例。 所有字段默认为null。
-
-