Java Code Examples for org.apache.directory.api.ldap.model.message.ResultCodeEnum#INSUFFICIENT_ACCESS_RIGHTS

The following examples show how to use org.apache.directory.api.ldap.model.message.ResultCodeEnum#INSUFFICIENT_ACCESS_RIGHTS . 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: LdapNoPermissionException.java    From directory-ldap-api with Apache License 2.0 4 votes vote down vote up
/**
 * Creates a new instance of LdapNoPermissionException.
 */
public LdapNoPermissionException()
{
    super( ResultCodeEnum.INSUFFICIENT_ACCESS_RIGHTS, null );
}
 
Example 2
Source File: LdapNoPermissionException.java    From directory-ldap-api with Apache License 2.0 2 votes vote down vote up
/**
 * Creates a new instance of LdapNoPermissionException.
 *
 * @param message The exception message
 */
public LdapNoPermissionException( String message )
{
    super( ResultCodeEnum.INSUFFICIENT_ACCESS_RIGHTS, message );
}