01: package gnu.jemacs.buffer; 02: 03: /** Used to signal that an action was cancelled. */ 04: 05: public class CancelledException extends RuntimeException { 06: public CancelledException(String msg) { 07: super (msg); 08: } 09: 10: public CancelledException() { 11: super(); 12: } 13: }