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

prompto.problem.IllegalValueProblem Maven / Gradle / Ivy

The newest version!
package prompto.problem;

import prompto.parser.ICodeSection;

public class IllegalValueProblem extends SyntaxProblemBase {

	String message;
	
	public IllegalValueProblem(ICodeSection section, String message) {
		super(section);
		this.message = message;
	}

	@Override
	public Type getType() {
		return Type.WARNING;
	}
	
	@Override
	public String getMessage() {
		return message;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy