Class 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 java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.