org.tmapi.core
Class FactoryConfigurationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.tmapi.core.TMAPIException
              extended by org.tmapi.core.FactoryConfigurationException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
FeatureNotRecognizedException, FeatureNotSupportedException

public class FactoryConfigurationException
extends TMAPIException

Exception thrown when a TopicMapSystemFactory instance cannot be instantiated through the method TopicMapSystemFactory.newInstance().

Version:
$Rev: 62 $ - $Date: 2008-08-08 14:00:50 +0200 (Fr, 08 Aug 2008) $
Author:
The TMAPI Project
See Also:
Serialized Form

Constructor Summary
FactoryConfigurationException(java.lang.String message)
          Constructs a new throwable with the specified detail message.
FactoryConfigurationException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new throwable with the specified detail message.
FactoryConfigurationException(java.lang.Throwable cause)
          Constructs a new exception that wraps another exception.
 
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

FactoryConfigurationException

public FactoryConfigurationException(java.lang.String message)
Constructs a new throwable with the specified detail message.

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

FactoryConfigurationException

public FactoryConfigurationException(java.lang.Throwable cause)
Constructs a new exception that wraps another exception.

Parameters:
cause - The throwable which caused this exception to be thrown. This value is saved for later retrieval by the Throwable.getCause() method.

FactoryConfigurationException

public FactoryConfigurationException(java.lang.String message,
                                     java.lang.Throwable cause)
Constructs a new throwable with the specified detail message.

Parameters:
message - The detail message. This message is saved for later retrieval by the Throwable.getMessage() method.
cause - The throwable which caused this exception to be thrown. This value is saved for later retrieval by the Throwable.getCause() method.