01: package spoon.support.builder;
02:
03: import java.util.ArrayList;
04: import java.util.List;
05:
06: public class CtSnippetCompilationError extends RuntimeException {
07:
08: private static final long serialVersionUID = 7805276558728052328L;
09:
10: public List<String> problems;
11:
12: public CtSnippetCompilationError(List<String> problems) {
13: super ();
14: this .problems = problems;
15: }
16:
17: public CtSnippetCompilationError(String string) {
18: super ();
19: this .problems = new ArrayList<String>();
20: this.problems.add(string);
21:
22: }
23:
24: }
|