KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.sapia.console;
2
3
4 /**
5  * @author Yanick Duchesne
6  * 29-Nov-02
7  */

8 public class CommandNotFoundException extends Exception JavaDoc {
9   public CommandNotFoundException(String JavaDoc msg) {
10     super(msg);
11   }
12 }
13
Popular Tags