All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prompto.error.NullReferenceError Maven / Gradle / Ivy

The newest version!
package prompto.error;

import prompto.expression.IExpression;
import prompto.grammar.Identifier;
import prompto.runtime.Context;


public class NullReferenceError extends ExecutionError {

	private static final long serialVersionUID = 1L;

	@Override
	public IExpression getExpression(Context context) {
		return context.getRegisteredSymbol(new Identifier("NULL_REFERENCE"), true);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy