1. /*
  2. * @(#)CannotRedoException.java 1.12 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.undo;
  8. /**
  9. * Thrown when an UndoableEdit is told to <code>redo()</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 appropriate
  14. * for short term storage or RMI between applications running the same
  15. * version of Swing. A future release of Swing will provide support for
  16. * long term persistence.
  17. *
  18. * @version 1.5 07/16/97
  19. * @author Ray Ryan
  20. */
  21. public class CannotRedoException extends RuntimeException {
  22. }