KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > swing > UnsupportedLookAndFeelException


1 /*
2  * @(#)UnsupportedLookAndFeelException.java 1.17 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.swing;
8
9 /**
10  * An exception that indicates the requested look & feel
11  * management classes are not present on the user's system.
12  * <p>
13  * <strong>Warning:</strong>
14  * Serialized objects of this class will not be compatible with
15  * future Swing releases. The current serialization support is
16  * appropriate for short term storage or RMI between applications running
17  * the same version of Swing. As of 1.4, support for long term storage
18  * of all JavaBeans<sup><font size="-2">TM</font></sup>
19  * has been added to the <code>java.beans</code> package.
20  * Please see {@link java.beans.XMLEncoder}.
21  *
22  * @author unattributed
23  * @version 1.17 12/19/03
24  */

25 public class UnsupportedLookAndFeelException extends Exception JavaDoc
26 {
27     /**
28      * Constructs an UnsupportedLookAndFeelException object.
29      * @param s a message String
30      */

31     public UnsupportedLookAndFeelException(String JavaDoc s) {
32     super(s);
33     }
34 }
35
Popular Tags