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