Class TilesException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.struts.tiles.TilesException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DefinitionsFactoryException

public class TilesException extends Exception
Root class for all Tiles-exceptions.
See Also:
  • Constructor Details

    • TilesException

      public TilesException()
      Constructor.
    • TilesException

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

      public TilesException(Exception e)
      Create a new TilesException wrapping an existing exception.
      Parameters:
      e - The root cause exception
    • TilesException

      public TilesException(String message, Exception e)
      Create a new TilesException from an existing exception.
      Parameters:
      message - The detail message.
      e - The root cause exception
  • Method Details

    • getException

      public Exception getException()
      Return the embedded exception, if any.
      Returns:
      The root cause exception, or null if there is none.