Class GeodeticException

All Implemented Interfaces:
Serializable

public class GeodeticException extends RuntimeException
Unchecked exception thrown when an error occurred while computing a geodetic value. This exception may be used in contexts where a checked exception cannot be thrown. This exception typically has a Factory­Exception or Transform­Exception as its cause.
Since:
1.0
See Also:
  • Constructor Details

    • GeodeticException

      public GeodeticException()
      Constructs a new exception with no message.
    • GeodeticException

      public GeodeticException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - the detail message, or null if none.
    • GeodeticException

      public GeodeticException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - the cause, or null if none.
    • GeodeticException

      public GeodeticException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message, or null if none.
      cause - the cause, or null if none.