public class FactoryException extends Exception
If the failure is caused by an illegal authority code, then the actual exception should be
NoSuchAuthorityCodeException
. Otherwise, if the failure is caused by some error in the
underlying database (e.g. IOException
or SQLException
), then
this cause should be specified.
CoordinateOperationFactory
,
Serialized FormConstructor and Description |
---|
FactoryException()
Construct an exception with no detail message.
|
FactoryException(Exception cause)
Construct an exception with the specified cause.
|
FactoryException(String message)
Construct an exception with the specified detail message.
|
FactoryException(String message,
Throwable cause)
Construct an exception with the specified detail message and cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public FactoryException()
public FactoryException(String message)
message
- The detail message. The detail message is saved for later retrieval by the
Throwable.getMessage()
method.public FactoryException(Exception cause)
cause
- The cause for this exception. The cause is saved for later retrieval by the
Throwable.getCause()
method.public FactoryException(String message, Throwable cause)
IOException
or SQLException
).message
- The detail message. The detail message is saved for later retrieval by the
Throwable.getMessage()
method.cause
- The cause for this exception. The cause is saved for later retrieval by the
Throwable.getCause()
method.Copyright © 1996–2019 Geotools. All rights reserved.