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

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