Package org.apache.tiles.core.definition
Class DefinitionsFactoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.tiles.api.TilesException
org.apache.tiles.core.definition.DefinitionsFactoryException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- NoSuchDefinitionException
Exception thrown when an error occurs while the impl tries to
 create a new instance mapper.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor.DefinitionsFactoryException(String message) Constructor.DefinitionsFactoryException(String message, Throwable e) Create a newDefinitionsFactoryExceptionfrom an existing exception.Create a newDefinitionsFactoryExceptionwrapping 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- 
DefinitionsFactoryExceptionpublic DefinitionsFactoryException()Constructor.
- 
DefinitionsFactoryExceptionConstructor.- Parameters:
- message- The error or warning message.
 
- 
DefinitionsFactoryExceptionCreate a newDefinitionsFactoryExceptionwrapping 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.
 
- 
DefinitionsFactoryExceptionCreate a newDefinitionsFactoryExceptionfrom 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.
 
 
-