1. /*
  2. * @(#)IntrospectionException.java 1.11 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.beans;
  8. /**
  9. * Thrown when an exception happens during Introspection.
  10. * <p>
  11. * Typical causes include not being able to map a string class name
  12. * to a Class object, not being able to resolve a string method name,
  13. * or specifying a method name that has the wrong type signature for
  14. * its intended use.
  15. */
  16. public
  17. class IntrospectionException extends Exception {
  18. /**
  19. * Constructs an <code>IntrospectionException</code> with a
  20. * detailed message.
  21. *
  22. * @param mess Descriptive message
  23. */
  24. public IntrospectionException(String mess) {
  25. super(mess);
  26. }
  27. }