1 /* 2 * @(#)CannotRedoException.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.undo; 8 9 /** 10 * Thrown when an UndoableEdit is told to <code>redo()</code> and can't. 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 * @version 1.5 07/16/97 22 * @author Ray Ryan 23 */ 24 public class CannotRedoException extends RuntimeException { 25 } 26 27