Home | History | Annotate | Download | only in error

Lines Matching refs:problem

23     private String problem;
27 protected MarkedYAMLException(String context, Mark contextMark, String problem,
29 this(context, contextMark, problem, problemMark, note, null);
32 protected MarkedYAMLException(String context, Mark contextMark, String problem,
34 super(context + "; " + problem + "; " + problemMark, cause);
37 this.problem = problem;
42 protected MarkedYAMLException(String context, Mark contextMark, String problem, Mark problemMark) {
43 this(context, contextMark, problem, problemMark, null, null);
46 protected MarkedYAMLException(String context, Mark contextMark, String problem,
48 this(context, contextMark, problem, problemMark, null, cause);
64 && (problem == null || problemMark == null
71 if (problem != null) {
72 lines.append(problem);
95 return problem;