Home
last modified time | relevance | path

Searched refs:problemMark (Results 1 – 5 of 5) sorted by relevance

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
DMarkedYAMLException.java24 private Mark problemMark; field in MarkedYAMLException
28 Mark problemMark, String note) { in MarkedYAMLException() argument
29 this(context, contextMark, problem, problemMark, note, null); in MarkedYAMLException()
33 Mark problemMark, String note, Throwable cause) { in MarkedYAMLException() argument
34 super(context + "; " + problem + "; " + problemMark, cause); in MarkedYAMLException()
38 this.problemMark = problemMark; in MarkedYAMLException()
42 …protected MarkedYAMLException(String context, Mark contextMark, String problem, Mark problemMark) { in MarkedYAMLException() argument
43 this(context, contextMark, problem, problemMark, null, null); in MarkedYAMLException()
47 Mark problemMark, Throwable cause) { in MarkedYAMLException() argument
48 this(context, contextMark, problem, problemMark, null, cause); in MarkedYAMLException()
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
DConstructorException.java25 Mark problemMark, Throwable cause) { in ConstructorException() argument
26 super(context, contextMark, problem, problemMark, cause); in ConstructorException()
30 Mark problemMark) { in ConstructorException() argument
31 this(context, contextMark, problem, problemMark, null); in ConstructorException()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
DScannerException.java45 public ScannerException(String context, Mark contextMark, String problem, Mark problemMark, in ScannerException() argument
47 super(context, contextMark, problem, problemMark, note); in ScannerException()
63 public ScannerException(String context, Mark contextMark, String problem, Mark problemMark) { in ScannerException() argument
64 this(context, contextMark, problem, problemMark, null); in ScannerException()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/
DComposerException.java24 … protected ComposerException(String context, Mark contextMark, String problem, Mark problemMark) { in ComposerException() argument
25 super(context, contextMark, problem, problemMark); in ComposerException()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
DParserException.java41 public ParserException(String context, Mark contextMark, String problem, Mark problemMark) { in ParserException() argument
42 super(context, contextMark, problem, problemMark, null, null); in ParserException()