Java Code Examples for org.apache.directory.api.ldap.model.message.ResultCodeEnum#NO_SUCH_ATTRIBUTE
The following examples show how to use
org.apache.directory.api.ldap.model.message.ResultCodeEnum#NO_SUCH_ATTRIBUTE .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LdapNoSuchAttributeException.java From directory-ldap-api with Apache License 2.0 | 4 votes |
/** * Creates a new instance of LdapNoSuchAttributeException. */ public LdapNoSuchAttributeException() { super( ResultCodeEnum.NO_SUCH_ATTRIBUTE, null ); }
Example 2
Source File: LdapNoSuchAttributeException.java From directory-ldap-api with Apache License 2.0 | 2 votes |
/** * Creates a new instance of LdapNoSuchAttributeException. * * @param message The exception message */ public LdapNoSuchAttributeException( String message ) { super( ResultCodeEnum.NO_SUCH_ATTRIBUTE, message ); }
Example 3
Source File: LdapNoSuchAttributeException.java From directory-ldap-api with Apache License 2.0 | 2 votes |
/** * Creates a new instance of LdapNoSuchAttributeException. * * @param message The exception message * @param cause The root cause for this exception */ public LdapNoSuchAttributeException( String message, Throwable cause ) { super( ResultCodeEnum.NO_SUCH_ATTRIBUTE, message, cause ); }