Class ConstructorException
- 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.ConstructorException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
DuplicateKeyException
public class ConstructorException extends MarkedYamlEngineException
General exception during construction step- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConstructorException(java.lang.String context, java.util.Optional<Mark> contextMark, java.lang.String problem, java.util.Optional<Mark> problemMark)CreateConstructorException(java.lang.String context, java.util.Optional<Mark> contextMark, java.lang.String problem, java.util.Optional<Mark> problemMark, java.lang.Throwable cause)Create
-
Method Summary
-
Methods inherited from class org.snakeyaml.engine.v2.exceptions.MarkedYamlEngineException
getContext, getContextMark, getMessage, getProblem, getProblemMark, toString
-
-
-
-
Constructor Detail
-
ConstructorException
public ConstructorException(java.lang.String context, java.util.Optional<Mark> contextMark, java.lang.String problem, java.util.Optional<Mark> problemMark, java.lang.Throwable cause)Create- Parameters:
context- - part of the documentcontextMark- - context positionproblem- - the issueproblemMark- - problem positioncause- - the reason
-
ConstructorException
public ConstructorException(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- - problem position
-
-