View Javadoc

1   /*
2    * Created on 8.7.2004
3    */
4   package net.sf.tomp.xtcl;
5   
6   /***
7    * @author tomp Thrown by the XTCompiler if an unknown command name is
8    *         encountered (not in cases of known command but invalid syntax)
9    */
10  public class UnknownCommandException extends IllegalArgumentException {
11      /***
12       *
13       */
14      public UnknownCommandException() {
15          super();
16  
17          // TODO Auto-generated constructor stub
18      }
19  
20      /***
21       * @param arg0
22       */
23      public UnknownCommandException(String arg0) {
24          super(arg0);
25  
26          // TODO Auto-generated constructor stub
27      }
28  }