View Javadoc
1 /*** 2 * EvaluationException.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 an error appears in the expression evaluation given a context 11 * 12 * @author mballesteros 13 */ 14 public class EvaluationException extends java.lang.Exception { 15 16 /*** 17 * Constructs an instance of <code>EvaluationException</code> with the specified detail message. 18 * @param msg the detail message. 19 */ 20 public EvaluationException(String msg) { 21 super(msg); 22 } 23 }

This page was automatically generated by Maven