1. /*
  2. * @(#)CannotUndoException.java 1.16 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.swing.undo;
  8. /**
  9. * Thrown when an UndoableEdit is told to <code>undo()</code> and can't.
  10. * <p>
  11. * <strong>Warning:</strong>
  12. * Serialized objects of this class will not be compatible with
  13. * future Swing releases. The current serialization support is
  14. * appropriate for short term storage or RMI between applications running
  15. * the same version of Swing. As of 1.4, support for long term storage
  16. * of all JavaBeans<sup><font size="-2">TM</font></sup>
  17. * has been added to the <code>java.beans</code> package.
  18. * Please see {@link java.beans.XMLEncoder}.
  19. *
  20. * @version 1.5 07/16/97
  21. * @author Ray Ryan
  22. */
  23. public class CannotUndoException extends RuntimeException {
  24. }