KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gnu > jemacs > buffer > CancelledException


1 package gnu.jemacs.buffer;
2
3 /** Used to signal that an action was cancelled. */
4
5 public class CancelledException extends RuntimeException JavaDoc
6 {
7   public CancelledException(String JavaDoc msg)
8   {
9     super(msg);
10   }
11
12   public CancelledException()
13   {
14     super();
15   }
16 }
17
Popular Tags