/[classpath]/classpath/java/beans/IntrospectionException.java
ViewVC logotype

Diff of /classpath/java/beans/IntrospectionException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by mark, Tue Jan 22 22:26:59 2002 UTC revision 1.5 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* java.beans.IntrospectionException  /* IntrospectionException -- thrown when an exception occurs in introspection
2     Copyright (C) 1998 Free Software Foundation, Inc.     Copyright (C) 1998, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 7  GNU Classpath is free software; you can Line 7  GNU Classpath is free software; you can
7  it under the terms of the GNU General Public License as published by  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
9  any later version.  any later version.
10    
11  GNU Classpath is distributed in the hope that it will be useful, but  GNU Classpath is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Line 39  exception statement from your version. * Line 39  exception statement from your version. *
39  package java.beans;  package java.beans;
40    
41  /**  /**
42   ** IntrospectionException is thrown when the Introspector fails.  Surprise, surprise.   * IntrospectionException is thrown when the Introspector fails. Typical
43   **   * causes are the inability to map a name to its Class, or specifying a
44   ** @author John Keiser   * wrong type signature.
45   ** @since JDK1.1   *
46   ** @version 1.1.0, 31 May 1998   * @author John Keiser
47   ** @see java.beans.Introspector   * @see Introspector
48   **/   * @since 1.1
49     * @status updated to 1.4
50  public class IntrospectionException extends Exception {   */
51          /** Instantiate this exception with the given message.  public class IntrospectionException extends Exception
52           ** @param msg the message for the exception.  {
53           **/    /**
54          public IntrospectionException(String msg) {     * Compatible with JDK 1.1+.
55                  super(msg);     */
56          }    private static final long serialVersionUID = -3728150539969542619L;
57    
58      /**
59       * Instantiate this exception with the given message.
60       *
61       * @param msg the message for the exception
62       */
63      public IntrospectionException(String msg)
64      {
65        super(msg);
66      }
67  }  }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26