/* *An exception of this type is thrown whenever the user has issued a *command which cannot be properly interpreted. */ public class InvalidCommandException extends Exception { public InvalidCommandException (String s) { super (s); } public InvalidCommandException() { } }