Class FactoryDataException
- Object
-
- Throwable
-
- Exception
-
- FactoryException
-
- FactoryDataException
-
- All Implemented Interfaces:
Serializable
public class FactoryDataException extends FactoryException
Thrown when a factory contains invalid data.Example: an EPSG database record containing a null value in a column where nulls should not have been allowed.- Since:
- 0.7
- See Also:
- Serialized Form
Defined in the
sis-referencing
module
-
-
Constructor Summary
Constructors Constructor Description FactoryDataException()
Construct an exception with no detail message.FactoryDataException(String message)
Construct an exception with the specified detail message.FactoryDataException(String message, Throwable cause)
Construct 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 Detail
-
FactoryDataException
public FactoryDataException()
Construct an exception with no detail message.
-
FactoryDataException
public FactoryDataException(String message)
Construct an exception with the specified detail message.- Parameters:
message
- the detail message, saved for later retrieval by theThrowable.getMessage()
method.
-
FactoryDataException
public FactoryDataException(String message, Throwable cause)
Construct 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 for this exception, saved for later retrieval by theThrowable.getCause()
method.
-
-