prompto.problem.NotStorableProblem Maven / Gradle / Ivy
The newest version!
package prompto.problem;
import prompto.parser.ICodeSection;
public class NotStorableProblem extends SyntaxProblemBase {
String message;
public NotStorableProblem(ICodeSection section, String name) {
super(section);
this.message = name + " is not storable";
}
@Override
public Type getType() {
return Type.WARNING;
}
@Override
public String getMessage() {
return message;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy