KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > console > Quit


1 package org.sapia.console;
2
3
4 /**
5  * @author Yanick Duchesne
6  * 29-Nov-02
7  */

8 public class Quit implements Command {
9   /**
10    * @see org.sapia.console.Command#execute(Context)
11    */

12   public void execute(Context ctx) throws AbortException {
13     throw new AbortException();
14   }
15 }
16
Popular Tags