
spoon.support.compiler.SnippetCompilationError Maven / Gradle / Ivy
package spoon.support.compiler;
import java.util.ArrayList;
import java.util.List;
import spoon.SpoonException;
public class SnippetCompilationError extends SpoonException {
private static final long serialVersionUID = 7805276558728052328L;
public List problems;
public SnippetCompilationError(List problems) {
super();
this.problems = problems;
}
public SnippetCompilationError(String string) {
super();
this.problems = new ArrayList();
this.problems.add(string);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy