Package com.esri.core.geometry
Class JsonGeometryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.esri.core.geometry.GeometryException
-
- com.esri.core.geometry.JsonGeometryException
-
- All Implemented Interfaces:
java.io.Serializable
public class JsonGeometryException extends GeometryException
A runtime exception raised when a JSON related exception occurs.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description JsonGeometryException(java.lang.Exception ex)
Constructs a Json Geometry Exception with the given another exception.JsonGeometryException(java.lang.String str)
Constructs a Json Geometry Exception with the given error string/message.
-
Method Summary
-
Methods inherited from class com.esri.core.geometry.GeometryException
GeometryInternalError
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JsonGeometryException
public JsonGeometryException(java.lang.String str)
Constructs a Json Geometry Exception with the given error string/message.- Parameters:
str
- - The error string.
-
JsonGeometryException
public JsonGeometryException(java.lang.Exception ex)
Constructs a Json Geometry Exception with the given another exception.- Parameters:
ex
- - The exception to copy the message from.
-
-