Class FactoryDataException
Object
Throwable
Exception
FactoryException
FactoryDataException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- LocalizationGridException
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:
Defined in the sis-referencing module
- 
Constructor SummaryConstructorsConstructorDescriptionConstruct 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.FactoryDataException(Throwable cause) Constructs an exception with the specified cause.
- 
Method SummaryMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
FactoryDataExceptionpublic FactoryDataException()Construct an exception with no detail message.
- 
FactoryDataExceptionConstruct an exception with the specified detail message.- Parameters:
- message- the detail message, saved for later retrieval by the- Throwable.getMessage()method.
 
- 
FactoryDataExceptionConstructs an exception with the specified cause.- Parameters:
- cause- the cause, saved for later retrieval by the- Throwable.getCause()method.
- Since:
- 1.2
 
- 
FactoryDataExceptionConstruct an exception with the specified detail message and cause.- Parameters:
- message- the detail message, saved for later retrieval by the- Throwable.getMessage()method.
- cause- the cause for this exception, saved for later retrieval by the- Throwable.getCause()method.
 
 
-