Class DefinitionsFactoryException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FactoryNotFoundException, NoSuchDefinitionException

public class DefinitionsFactoryException extends TilesException
Exception thrown when an error occurs while the impl tries to create a new instance mapper.
Version:
$Rev: 942880 $ $Date: 2010-05-11 05:58:07 +1000 (Tue, 11 May 2010) $
See Also:
  • Constructor Details

    • DefinitionsFactoryException

      public DefinitionsFactoryException()
      Constructor.
    • DefinitionsFactoryException

      public DefinitionsFactoryException(String message)
      Constructor.
      Parameters:
      message - The error or warning message.
    • DefinitionsFactoryException

      public DefinitionsFactoryException(Throwable e)
      Create a new DefinitionsFactoryException wrapping an existing exception.

      The existing exception will be embedded in the new one and its message will become the default message for the DefinitionsFactoryException.

      Parameters:
      e - The exception to be wrapped.
    • DefinitionsFactoryException

      public DefinitionsFactoryException(String message, Throwable e)
      Create a new DefinitionsFactoryException from an existing exception.

      The existing exception will be embedded in the new one, but the new exception will have its own message.

      Parameters:
      message - The detail message.
      e - The exception to be wrapped.