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

prompto.store.InvalidValueError Maven / Gradle / Ivy

The newest version!
package prompto.store;

import prompto.error.ExecutionError;
import prompto.expression.IExpression;
import prompto.literal.TextLiteral;
import prompto.runtime.Context;

public class InvalidValueError extends ExecutionError {

	private static final long serialVersionUID = 1L;

	public InvalidValueError(String message) {
		super(message);
	}
	
	@Override
	public IExpression getExpression(Context context) {
		return new TextLiteral(super.getMessage());
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy