Class MissingFactoryResourceException
Object
Throwable
Exception
FactoryException
MissingFactoryResourceException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- UnavailableFactoryException
Thrown when a particular object cannot be created because a resource is missing.
 The most common case is a NADCON or NTv2 datum shift operation requested while the
 datum shift grids was not found in the 
$SIS_DATA/DatumChanges directory.
 Relationship with other exceptions
This exception means that the factory failed to create a particular object. However, the factory may succeed in creating other objects. By contrast,UnavailableFactoryException means that the whole factory cannot be used at all.
 This exception is not for unimplemented operations (for example map projections not yet supported).
 For unimplemented operation methods, use NoSuchIdentifierException instead.
- Since:
- 0.7
- See Also:
Defined in the sis-referencing module
- 
Constructor SummaryConstructorsConstructorDescriptionConstruct an exception with no detail message.MissingFactoryResourceException(String message) Construct an exception with the specified detail message.MissingFactoryResourceException(String message, Throwable cause) Construct an exception with the specified detail message and cause.
- 
Method SummaryMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
MissingFactoryResourceExceptionpublic MissingFactoryResourceException()Construct an exception with no detail message.
- 
MissingFactoryResourceExceptionConstruct an exception with the specified detail message.- Parameters:
- message- the detail message, saved for later retrieval by the- Throwable.getMessage()method.
 
- 
MissingFactoryResourceExceptionConstruct an exception with the specified detail message and cause. The cause is the exception thrown in the underlying database (e.g.IOExceptionorSQLException).- 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.
 
 
-