Package org.ldaptive.filter
Class FilterParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ldaptive.LdapException
-
- org.ldaptive.filter.FilterParseException
-
- All Implemented Interfaces:
Serializable
public class FilterParseException extends LdapException
Exception that indicates an invalid filter string.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
serialVersionUID.
-
Constructor Summary
Constructors Constructor Description FilterParseException(ResultCode code, String msg)
Creates a new filter parse exception.FilterParseException(ResultCode code, String msg, Throwable e)
Creates a new filter parse exception.FilterParseException(ResultCode code, Throwable e)
Creates a new filter parse exception.
-
Method Summary
-
Methods inherited from class org.ldaptive.LdapException
formatResult, getResultCode
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
serialVersionUID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FilterParseException
public FilterParseException(ResultCode code, String msg)
Creates a new filter parse exception.- Parameters:
code
- result code describing this exceptionmsg
- describing this exception
-
FilterParseException
public FilterParseException(ResultCode code, Throwable e)
Creates a new filter parse exception.- Parameters:
code
- result code describing this exceptione
- underlying exception
-
FilterParseException
public FilterParseException(ResultCode code, String msg, Throwable e)
Creates a new filter parse exception.- Parameters:
code
- result code describing this exceptionmsg
- describing this exceptione
- underlying exception
-
-