IllegalExpressionException.java
上传用户:njled888
上传日期:2007-01-07
资源大小:29k
文件大小:1k
源码类别:

游戏

开发平台:

Java

  1. /*
  2.  * @(#)IllegalExpressionException.java Version 1.0 98/03/12
  3.  * 
  4.  * Copyright (c) 1998 by Huahai Yang
  5.  * 
  6.  * Use at your own risk. I do not guarantee the fitness of this 
  7.  * software for any purpose, and I do not accept responsibility for 
  8.  * any damage you do to yourself or others by using this software.
  9.  * This file may be distributed freely, provided its contents 
  10.  * are not tampered with in any way.
  11.  *
  12.  */
  13. /**
  14.  * An Exception class.  It will be throwed out by Expression class 
  15.  * once it encounters error while parsing an string as expression.
  16.  * @see        Expression
  17.  * @version  1.0, 03/12/98
  18.  * @author     Huahai Yang
  19.  */
  20. public class IllegalExpressionException extends Exception
  21. {
  22.    /**
  23.     * Constructs this exception with no specified detail message.
  24.     */
  25.    public IllegalExpressionException()
  26.    {
  27.       super();
  28.    } // 0 param constructor
  29.    /**
  30.     * Constructs this Exception with the specified detail message. 
  31.     */
  32.    public IllegalExpressionException(String msg)
  33.    {
  34.       super(msg);
  35.    } // 1 param constructor
  36. }  // IllegalExpressionException