1 package org.sapia.console;2 3 4 /**5 * @author Yanick Duchesne6 * 29-Nov-027 */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