1 package yawn.ui.cli; 2 3 import org.apache.commons.cli.ParseException; 4 5 /*** 6 * This is yawn.tools.CommandLineHaltRequestedException, part of the yawn 7 * project. 8 * 9 * <p>$Id: CommandLineHaltRequestedException.java,v 1.4 2005/04/20 18:55:13 supermarti Exp $</p> 10 * 11 * @author Luis Martí (luis dot marti at uc3m dot es) 12 * @version $Revision: 1.4 $ 13 */ 14 class CommandLineHaltRequestedException extends ParseException { 15 16 /*** 17 * 18 */ 19 private static final long serialVersionUID = 3545517322107106611L; 20 21 /*** 22 */ 23 public CommandLineHaltRequestedException() { 24 super(null); 25 } 26 }