org.geotools.referencing.factory
Class FactoryNotFoundException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.opengis.referencing.FactoryException
              extended by org.geotools.referencing.factory.FactoryNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class FactoryNotFoundException
extends org.opengis.referencing.FactoryException

Thrown when a requested factory has not been found. This exception may be thrown by DeferredAuthorityFactory.createBackingStore().

Since:
2.3
Version:
$Id: FactoryNotFoundException.java 30641 2008-06-12 17:42:27Z acuster $
Author:
Martin Desruisseaux (IRD)
See Also:
Serialized Form

Constructor Summary
FactoryNotFoundException()
          Construct an exception with no detail message.
FactoryNotFoundException(java.lang.Exception cause)
          Construct an exception with the specified cause.
FactoryNotFoundException(java.lang.String message)
          Construct an exception with the specified detail message.
FactoryNotFoundException(java.lang.String message, java.lang.Throwable cause)
          Construct an exception with the specified detail message and cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FactoryNotFoundException

public FactoryNotFoundException()
Construct an exception with no detail message.


FactoryNotFoundException

public FactoryNotFoundException(java.lang.String message)
Construct an exception with the specified detail message.

Parameters:
message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.

FactoryNotFoundException

public FactoryNotFoundException(java.lang.Exception cause)
Construct an exception with the specified cause. The detail message is copied from the cause localized message.

Parameters:
cause - The cause for this exception. The cause is saved for later retrieval by the Throwable.getCause() method.

FactoryNotFoundException

public FactoryNotFoundException(java.lang.String message,
                                java.lang.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. 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-2010 Geotools. All Rights Reserved.