Object
Throwable
Exception
RuntimeException
UnformattableObjectException
- All Implemented Interfaces:
Serializable
Thrown when a PROJ object can not be formatted to Well Known Text (WKT), JSON or PROJ string.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct an exception with no detail message.UnformattableObjectException
(String message) Constructs an exception with the specified detail message.UnformattableObjectException
(String message, Throwable cause) Constructs an exception with the specified detail message and cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnformattableObjectException
public UnformattableObjectException()Construct an exception with no detail message. -
UnformattableObjectException
Constructs an exception with the specified detail message.- Parameters:
message
- the detail message, saved for later retrieval by theThrowable.getMessage()
method.
-
UnformattableObjectException
Constructs an exception with the specified detail message and cause.- Parameters:
message
- the detail message, saved for later retrieval by theThrowable.getMessage()
method.cause
- the cause, saved for later retrieval by theThrowable.getCause()
method.
-