Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5f57e5d31236c93efd5533f09dd27da3103e8b56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.eclipse.xtend.expression;

import org.eclipse.internal.xtend.expression.ast.SyntaxElement;

public class ExceptionRaisingNullEvaluationHandler implements
		NullEvaluationHandler {

	public Object handleNullEvaluation(SyntaxElement element, ExecutionContext ctx) {
		throw new EvaluationException("null evaluation",element, ctx);
	}

}

Back to the top