Class DefinitionsFactoryException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
NoSuchDefinitionException

public class DefinitionsFactoryException extends TilesException
Exception thrown when an error occurs while the impl tries to create a new instance mapper.
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.