1. /*
  2. * @(#)UnsupportedLookAndFeelException.java 1.12 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.swing;
  11. /**
  12. * An exception that indicates the request look & feel management classes
  13. * are not present on the user's system.
  14. * <p>
  15. * <strong>Warning:</strong>
  16. * Serialized objects of this class will not be compatible with
  17. * future Swing releases. The current serialization support is appropriate
  18. * for short term storage or RMI between applications running the same
  19. * version of Swing. A future release of Swing will provide support for
  20. * long term persistence.
  21. *
  22. * @author unattributed
  23. * @version 1.12 02/02/00
  24. */
  25. public class UnsupportedLookAndFeelException extends Exception
  26. {
  27. /**
  28. * Constructs an UnsupportedLookAndFeelException object.
  29. * @param s a message String
  30. */
  31. public UnsupportedLookAndFeelException(String s) {
  32. super(s);
  33. }
  34. }