Revision 11524 branches/v10/extensions/extExpressionField/src/com/iver/cit/gvsig/project/documents/table/operators/AbstractField.java

View differences:

AbstractField.java
5 5
import org.apache.bsf.BSFException;
6 6
import org.apache.bsf.BSFManager;
7 7

  
8
import bsh.EvalError;
9 8

  
10 9
import com.hardcode.gdbms.engine.data.driver.DriverException;
11 10
import com.hardcode.gdbms.engine.values.BooleanValue;
......
36 35
				return value.toString();
37 36
			}
38 37
		} catch (DriverException e) {
39
			new EvalError(e.getMessage(),null,null);
38
			throw new RuntimeException(e.getMessage());
40 39
		}
41
		return null;
42 40
	}
43 41
	public void eval(BSFManager interpreter) throws BSFException {
44 42
		if (!isEval){

Also available in: Unified diff