Package org.apache.tiles.api
Class TilesException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.tiles.api.TilesException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- DefinitionsFactoryException,- DigesterDefinitionsReaderException,- EvaluationException,- InvalidTemplateException,- NoSuchAttributeException,- NoSuchContainerException,- PreparerException,- TilesContainerFactoryException,- TilesVelocityException
Root class for all Tiles-exceptions.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor.TilesException(String message) Constructor.TilesException(String message, Throwable e) Create a newTilesExceptionfrom an existing exception.Create a newTilesExceptionwrapping an existing exception.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
TilesExceptionpublic TilesException()Constructor.
- 
TilesExceptionConstructor.- Parameters:
- message- The error or warning message.
 
- 
TilesExceptionCreate a newTilesExceptionwrapping 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.
 
- 
TilesExceptionCreate a newTilesExceptionfrom 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.
 
 
-