1 /***
2 * ParseException.java
3 *
4 * $Author: mballesteros $
5 * $Date: 2003/11/28 19:18:04 $
6 * $Revision: 1.1 $
7 */
8 package net.sf.jec;
9
10 /*** Thrown when there's an error parsing an expression
11 * @author mballesteros
12 */
13 public class ParseException extends java.lang.Exception {
14
15 /***
16 * Constructs an instance of <code>ParseException</code> with the specified detail message.
17 * @param msg the detail message.
18 */
19 public ParseException(String msg) {
20 super(msg);
21 }
22 }
This page was automatically generated by Maven