Class MarkedYAMLException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.fasterxml.jackson.core.JsonProcessingException
-
- com.fasterxml.jackson.core.JsonParseException
-
- com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException
-
- com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
-
- com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
-
- All Implemented Interfaces:
Serializable
@Deprecated public class MarkedYAMLException extends YAMLException
Deprecated.Since 2.8Replacement for formerly shaded exception type from SnakeYAML; included in 2.8 solely for backwards compatibility: new code that relies on Jackson 2.8 and alter should NOT use this type but only base typeYAMLException.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected org.yaml.snakeyaml.error.MarkedYAMLException_sourceDeprecated.
-
Constructor Summary
Constructors Modifier Constructor Description protectedMarkedYAMLException(com.fasterxml.jackson.core.JsonParser p, org.yaml.snakeyaml.error.MarkedYAMLException src)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static MarkedYAMLExceptionfrom(com.fasterxml.jackson.core.JsonParser p, org.yaml.snakeyaml.error.MarkedYAMLException src)Deprecated.StringgetContext()Deprecated.MarkgetContextMark()Deprecated.StringgetProblem()Deprecated.MarkgetProblemMark()Deprecated.-
Methods inherited from class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
from
-
Methods inherited from class com.fasterxml.jackson.core.JsonParseException
getMessage, getProcessor, getRequestPayload, getRequestPayloadAsString, withParser, withRequestPayload
-
Methods inherited from class com.fasterxml.jackson.core.JsonProcessingException
clearLocation, getLocation, getMessageSuffix, getOriginalMessage, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Method Detail
-
from
public static MarkedYAMLException from(com.fasterxml.jackson.core.JsonParser p, org.yaml.snakeyaml.error.MarkedYAMLException src)
Deprecated.
-
getContext
public String getContext()
Deprecated.
-
getContextMark
public Mark getContextMark()
Deprecated.
-
getProblem
public String getProblem()
Deprecated.
-
getProblemMark
public Mark getProblemMark()
Deprecated.
-
-