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. package javax.naming.directory;
  8. import javax.naming.NamingException;
  9. /**
  10. * This exception is thrown when the specification of
  11. * a search filter is invalid. The expression of the filter may
  12. * be invalid, or there may be a problem with one of the parameters
  13. * passed to the filter.
  14. * <p>
  15. * Synchronization and serialization issues that apply to NamingException
  16. * apply directly here.
  17. *
  18. * @author Rosanna Lee
  19. * @author Scott Seligman
  20. * @version 1.7 03/12/19
  21. * @since 1.3
  22. */
  23. public class InvalidSearchFilterException extends NamingException {
  24. /**
  25. * Constructs a new instance of InvalidSearchFilterException.
  26. * All fields are set to null.
  27. */
  28. public InvalidSearchFilterException() {
  29. super();
  30. }
  31. /**
  32. * Constructs a new instance of InvalidSearchFilterException
  33. * with an explanation. All other fields are set to null.
  34. * @param msg Detail about this exception. Can be null.
  35. * @see java.lang.Throwable#getMessage
  36. */
  37. public InvalidSearchFilterException(String msg) {
  38. super(msg);
  39. }
  40. /**
  41. * Use serialVersionUID from JNDI 1.1.1 for interoperability
  42. */
  43. private static final long serialVersionUID = 2902700940682875441L;
  44. }