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

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