Class TilesException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DefinitionsFactoryException, DigesterDefinitionsReaderException, EvaluationException, InvalidTemplateException, NoSuchAttributeException, NoSuchContainerException, PreparerException, TilesContainerFactoryException, TilesVelocityException

public class TilesException extends RuntimeException
Root class for all Tiles-exceptions.
Version:
$Rev: 832867 $ $Date: 2009-11-05 07:16:23 +1100 (Thu, 05 Nov 2009) $
See Also:
  • Constructor Details

    • TilesException

      public TilesException()
      Constructor.
    • TilesException

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

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

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

      Parameters:
      e - The cause to be wrapped.
    • TilesException

      public TilesException(String message, Throwable e)
      Create a new TilesException 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 cause to be wrapped.