Object
Throwable
Exception
RuntimeException
UnparsableObjectException
- All Implemented Interfaces:
Serializable
Thrown when a PROJ object can not be parsed from a Well Known Text (WKT), JSON or PROJ string.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct an exception with no detail message.UnparsableObjectException
(String message) Constructs an exception with the specified detail message.UnparsableObjectException
(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
-
UnparsableObjectException
public UnparsableObjectException()Construct an exception with no detail message. -
UnparsableObjectException
Constructs an exception with the specified detail message.- Parameters:
message
- the detail message, saved for later retrieval by theThrowable.getMessage()
method.
-
UnparsableObjectException
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.
-