Class ComposerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.snakeyaml.engine.v2.exceptions.YamlEngineException
-
- org.snakeyaml.engine.v2.exceptions.MarkedYamlEngineException
-
- org.snakeyaml.engine.v2.exceptions.ComposerException
-
- All Implemented Interfaces:
java.io.Serializable
public class ComposerException extends MarkedYamlEngineException
General exception during composition step- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ComposerException(java.lang.String problem, java.util.Optional<Mark> problemMark)
CreateComposerException(java.lang.String context, java.util.Optional<Mark> contextMark, java.lang.String problem, java.util.Optional<Mark> problemMark)
Create
-
Method Summary
-
Methods inherited from class org.snakeyaml.engine.v2.exceptions.MarkedYamlEngineException
getContext, getContextMark, getMessage, getProblem, getProblemMark, toString
-
-
-
-
Constructor Detail
-
ComposerException
public ComposerException(java.lang.String context, java.util.Optional<Mark> contextMark, java.lang.String problem, java.util.Optional<Mark> problemMark)
Create- Parameters:
context
- - part of the documentcontextMark
- - context positionproblem
- - the issueproblemMark
- - the problem location
-
ComposerException
public ComposerException(java.lang.String problem, java.util.Optional<Mark> problemMark)
Create- Parameters:
problem
- - the issueproblemMark
- - the problem location
-
-