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 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.
-