KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > beans > IntrospectionException


1 /*
2  * @(#)IntrospectionException.java 1.15 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 package java.beans;
9  
10 /**
11  * Thrown when an exception happens during Introspection.
12  * <p>
13  * Typical causes include not being able to map a string class name
14  * to a Class object, not being able to resolve a string method name,
15  * or specifying a method name that has the wrong type signature for
16  * its intended use.
17  */

18
19 public
20 class IntrospectionException extends Exception JavaDoc {
21
22     /**
23      * Constructs an <code>IntrospectionException</code> with a
24      * detailed message.
25      *
26      * @param mess Descriptive message
27      */

28     public IntrospectionException(String JavaDoc mess) {
29         super(mess);
30     }
31 }
32
Popular Tags