Class YamlEngineException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.snakeyaml.engine.v2.exceptions.YamlEngineException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
EmitterException
,MarkedYamlEngineException
,MissingEnvironmentVariableException
,ReaderException
,RepresenterException
,YamlVersionException
public class YamlEngineException extends java.lang.RuntimeException
General exception to serve as the root- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description YamlEngineException(java.lang.String message)
CreateYamlEngineException(java.lang.String message, java.lang.Throwable cause)
CreateYamlEngineException(java.lang.Throwable cause)
Create
-
-
-
Constructor Detail
-
YamlEngineException
public YamlEngineException(java.lang.String message)
Create- Parameters:
message
- - the problem
-
YamlEngineException
public YamlEngineException(java.lang.Throwable cause)
Create- Parameters:
cause
- - the reason
-
YamlEngineException
public YamlEngineException(java.lang.String message, java.lang.Throwable cause)
Create- Parameters:
message
- - errorcause
- - the cause
-
-