Package org.apache.tiles.definition
Class DefinitionsFactoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.tiles.TilesException
org.apache.tiles.definition.DefinitionsFactoryException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FactoryNotFoundException
,NoSuchDefinitionException
Exception thrown when an error occurs while the impl tries to
create a new instance mapper.
- Version:
- $Rev: 942880 $ $Date: 2010-05-11 05:58:07 +1000 (Tue, 11 May 2010) $
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.DefinitionsFactoryException
(String message) Constructor.DefinitionsFactoryException
(String message, Throwable e) Create a newDefinitionsFactoryException
from an existing exception.Create a newDefinitionsFactoryException
wrapping an existing exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DefinitionsFactoryException
public DefinitionsFactoryException()Constructor. -
DefinitionsFactoryException
Constructor.- Parameters:
message
- The error or warning message.
-
DefinitionsFactoryException
Create a newDefinitionsFactoryException
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
Create a newDefinitionsFactoryException
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.
-