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