Searched refs:contextMark (Results 1 - 5 of 5) sorted by relevance

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
H A DConstructorException.java24 protected ConstructorException(String context, Mark contextMark, String problem, argument
26 super(context, contextMark, problem, problemMark, cause);
29 protected ConstructorException(String context, Mark contextMark, String problem, argument
31 this(context, contextMark, problem, problemMark, null);
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
H A DMarkedYAMLException.java22 private Mark contextMark; field in class:MarkedYAMLException
27 protected MarkedYAMLException(String context, Mark contextMark, String problem, argument
29 this(context, contextMark, problem, problemMark, note, null);
32 protected MarkedYAMLException(String context, Mark contextMark, String problem, argument
36 this.contextMark = contextMark;
42 protected MarkedYAMLException(String context, Mark contextMark, String problem, Mark problemMark) { argument
43 this(context, contextMark, problem, problemMark, null, null);
46 protected MarkedYAMLException(String context, Mark contextMark, String problem, argument
48 this(context, contextMark, proble
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
H A DScannerException.java35 * @param contextMark
45 public ScannerException(String context, Mark contextMark, String problem, Mark problemMark, argument
47 super(context, contextMark, problem, problemMark, note);
56 * @param contextMark
63 public ScannerException(String context, Mark contextMark, String problem, Mark problemMark) { argument
64 this(context, contextMark, problem, problemMark, null);
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/
H A DComposerException.java24 protected ComposerException(String context, Mark contextMark, String problem, Mark problemMark) { argument
25 super(context, contextMark, problem, problemMark);
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
H A DParserException.java34 * @param contextMark
41 public ParserException(String context, Mark contextMark, String problem, Mark problemMark) { argument
42 super(context, contextMark, problem, problemMark, null, null);

Completed in 161 milliseconds