Class MissingFactoryResourceException

Object
Throwable
Exception
FactoryException
MissingFactoryResourceException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Unavailable­Factory­Exception

public class MissingFactoryResourceException extends FactoryException
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/Datum­Changes 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, Unavailable­Factory­Exception 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 No­Such­Identifier­Exception instead.

Since:
0.7
See Also:
  • Constructor Details

    • MissingFactoryResourceException

      public MissingFactoryResourceException()
      Construct an exception with no detail message.
    • MissingFactoryResourceException

      public MissingFactoryResourceException(String message)
      Construct an exception with the specified detail message.
      Parameters:
      message - the detail message, saved for later retrieval by the Throwable​.get­Message() method.
    • MissingFactoryResourceException

      public MissingFactoryResourceException(String message, Throwable cause)
      Construct an exception with the specified detail message and cause. The cause is the exception thrown in the underlying database (e.g. IOException or SQLException).
      Parameters:
      message - the detail message, saved for later retrieval by the Throwable​.get­Message() method.
      cause - the cause for this exception, saved for later retrieval by the Throwable​.get­Cause() method.