- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.naming.NamingException
-
- javax.naming.directory.InvalidAttributesException
-
- All Implemented Interfaces:
-
Serializable
public class InvalidAttributesException extends NamingException
尝试添加或修改不完整或不正确指定的属性集时,会抛出此异常。 例如,当尝试添加或修改绑定或者创建新的子上下文而不指定创建对象所需的所有必需属性时,可能会发生这种情况。 抛出此异常的另一种情况是通过规定同一属性集中不兼容的属性,或与对象的模式指定的属性冲突的属性。适用于NamingException的同步和序列化问题直接在这里应用。
- 从以下版本开始:
- 1.3
- 另请参见:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
-
-
构造方法摘要
构造方法 Constructor 描述 InvalidAttributesException()
构造InvalidAttributesException的新实例。InvalidAttributesException(String explanation)
使用说明构造一个InvalidAttributesException的新实例。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
InvalidAttributesException
public InvalidAttributesException(String explanation)
使用说明构造一个InvalidAttributesException的新实例。 所有其他字段都设置为null。- 参数
-
explanation
- 有关此异常的其他详细信息。 可以为null。 - 另请参见:
-
Throwable.getMessage()
-
InvalidAttributesException
public InvalidAttributesException()
构造InvalidAttributesException的新实例。 所有字段都设置为null。
-
-