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

prompto.problem.ErrorProblem Maven / Gradle / Ivy

The newest version!
package prompto.problem;

import prompto.parser.ICodeSection;

public class ErrorProblem extends SyntaxProblemBase {

	String name;
	
	public ErrorProblem(ICodeSection section, String name) {
		super(section);
		this.name = name;
	}

	@Override
	public Type getType() {
		return Type.ERROR;
	}
	
	@Override
	public String getMessage() {
		return "Missing binding:" + name;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy