- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.directory.AttributeInUseException
-
- All Implemented Interfaces:
-
Serializable
public class AttributeInUseException extends NamingException
当操作尝试添加已经存在的属性时,抛出此异常。适用于NamingException的同步和序列化问题直接在这里应用。
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 AttributeInUseException()
构造一个新的AttributeInUseException实例。AttributeInUseException(String explanation)
构造一个新的AttributeInUseException实例,并带有解释。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
AttributeInUseException
public AttributeInUseException(String explanation)
构造一个新的AttributeInUseException实例,并带有解释。 所有其他字段都设置为null。- 参数
-
explanation
- 可能是关于此异常的额外详细信息。 - 另请参见:
-
Throwable.getMessage()
-
AttributeInUseException
public AttributeInUseException()
构造一个新的AttributeInUseException实例。 所有字段都初始化为null。
-
-