KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > naming > directory > InvalidSearchFilterException


1 /*
2  * @(#)InvalidSearchFilterException.java 1.7 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8
9 package javax.naming.directory;
10
11 import javax.naming.NamingException JavaDoc;
12
13 /**
14   * This exception is thrown when the specification of
15   * a search filter is invalid. The expression of the filter may
16   * be invalid, or there may be a problem with one of the parameters
17   * passed to the filter.
18   * <p>
19   * Synchronization and serialization issues that apply to NamingException
20   * apply directly here.
21   *
22   * @author Rosanna Lee
23   * @author Scott Seligman
24   * @version 1.7 03/12/19
25   * @since 1.3
26   */

27 public class InvalidSearchFilterException extends NamingException JavaDoc {
28     /**
29      * Constructs a new instance of InvalidSearchFilterException.
30      * All fields are set to null.
31      */

32     public InvalidSearchFilterException() {
33     super();
34     }
35
36     /**
37      * Constructs a new instance of InvalidSearchFilterException
38      * with an explanation. All other fields are set to null.
39      * @param msg Detail about this exception. Can be null.
40      * @see java.lang.Throwable#getMessage
41      */

42     public InvalidSearchFilterException(String JavaDoc msg) {
43     super(msg);
44     }
45
46     /**
47      * Use serialVersionUID from JNDI 1.1.1 for interoperability
48      */

49     private static final long serialVersionUID = 2902700940682875441L;
50 }
51
Popular Tags