KickJava   Java API By Example, From Geeks To Geeks.

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


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 JavaDoc {
12   public InputException(String JavaDoc msg) {
13     super(msg);
14   }
15 }
16
Popular Tags