6869707172737475
if ( (transitionName!=null) && (repeat!=null) ) { repeat = null; jpdlReader.addProblem(new Problem(Problem.LEVEL_WARNING, "ignoring repeat on timer with transition "+actionElement.asXML())); } }
34353637383940
public JpdlException(List problems) { super(problems.toString()); this.problems = problems; } public JpdlException(String msg) { this(Arrays.asList(new Object[]{new Problem(Problem.LEVEL_ERROR, msg)})); }
37383940414243
} public JpdlException(String msg) { this(Arrays.asList(new Object[]{new Problem(Problem.LEVEL_ERROR, msg)})); } public JpdlException(String msg, Throwable e ) { this(Arrays.asList(new Object[]{new Problem(Problem.LEVEL_ERROR, msg, e)})); }
public JpdlException(List problems) { super(problems.toString()); this.problems = problems; } public JpdlException(String msg) { this(Collections.singletonList(new Problem(Problem.LEVEL_ERROR, msg))); }
} public JpdlException(String msg) { this(Collections.singletonList(new Problem(Problem.LEVEL_ERROR, msg))); } public JpdlException(String msg, Throwable e ) { this(Collections.singletonList(new Problem(Problem.LEVEL_ERROR, msg, e))); }
6465666768697071