1 package org.sapia.console; 2 3 4 /** 5 * This exection should be thrown by commands when a the user as entered 6 * invalid input. 7 * 8 * @author Yanick Duchesne 9 * 23-Dec-02 10 */ 11 public class InputException extends Exception { 12 public InputException(String msg) { 13 super(msg); 14 } 15 } 16