1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package net.sf.ldaptemplate;
18
19 import org.springframework.dao.InvalidDataAccessResourceUsageException;
20
21 /***
22 * Thrown to indicate that an invalid value has been supplied to an LDAP
23 * operation. This could be e.g. an invalid filter or dn.
24 *
25 * @author Mattias Arthursson
26 *
27 */
28 public class BadLdapGrammarException extends
29 InvalidDataAccessResourceUsageException {
30
31 private static final long serialVersionUID = 961612585331409470L;
32
33 public BadLdapGrammarException(String message) {
34 super(message);
35 }
36
37 public BadLdapGrammarException(String message, Throwable cause) {
38 super(message, cause);
39 }
40 }