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

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