View Javadoc

1   /*
2    * Created on 8.7.2004
3    */
4   package net.sf.tomp.xtcl;
5   
6   /***
7    * Thrown by the XTCompiler if an unknown command name is
8    * encountered (not in cases of known command but invalid syntax)
9    * 
10   * @author tomp 
11   */
12  public class UnknownCommandException extends IllegalArgumentException {
13      /***
14  	 * Comment for <code>serialVersionUID</code>
15  	 */
16  	private static final long serialVersionUID = 194192201555047048L;
17  
18      /***
19       * Constructs the exception with the name that 
20       * is unknown as a command
21       * 
22       * @param the unknown name
23       */
24      public UnknownCommandException(String arg0) {
25          super(arg0);
26      }
27  }