1. /*
  2. * @(#)UnsupportedLookAndFeelException.java 1.11 01/11/29
  3. *
  4. * Copyright 2002 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 request look & feel management classes
  10. * 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 appropriate
  15. * for short term storage or RMI between applications running the same
  16. * version of Swing. A future release of Swing will provide support for
  17. * long term persistence.
  18. *
  19. * @author unattributed
  20. * @version 1.11 11/29/01
  21. */
  22. public class UnsupportedLookAndFeelException extends Exception
  23. {
  24. /**
  25. * Constructs an UnsupportedLookAndFeelException object.
  26. * @param s a message String
  27. */
  28. public UnsupportedLookAndFeelException(String s) {
  29. super(s);
  30. }
  31. }