Package org.yaml.snakeyaml.composer
Class ComposerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.yaml.snakeyaml.error.YAMLException
-
- org.yaml.snakeyaml.error.MarkedYAMLException
-
- org.yaml.snakeyaml.composer.ComposerException
-
- All Implemented Interfaces:
java.io.Serializable
public class ComposerException extends MarkedYAMLException
Exception during compose phase- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description protectedComposerException(java.lang.String problem, Mark problemMark)Create exception without a contextprotectedComposerException(java.lang.String context, Mark contextMark, java.lang.String problem, Mark problemMark)Create exception when context is available
-
Method Summary
-
Methods inherited from class org.yaml.snakeyaml.error.MarkedYAMLException
getContext, getContextMark, getMessage, getProblem, getProblemMark, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ComposerException
protected ComposerException(java.lang.String context, Mark contextMark, java.lang.String problem, Mark problemMark)Create exception when context is available- Parameters:
context- - contextcontextMark- - markproblem- - the issueproblemMark- - where the issue occurs
-
ComposerException
protected ComposerException(java.lang.String problem, Mark problemMark)Create exception without a context- Parameters:
problem- - the issueproblemMark- - where the issue occurs
-
-