This project has retired. For details please refer to its Attic page.
TilesException (Tiles 2 2.1.4 API)

org.apache.tiles
Class TilesException

Package class diagram package TilesException
java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.apache.tiles.TilesException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CannotAccessMethodException, CannotInstantiateObjectException, CannotRenderException, DefinitionsFactoryException, DigesterDefinitionsReaderException, InvalidTemplateException, NoSuchAttributeException, NoSuchContainerException, NotAvailableFeatureException, PreparerException, RendererException, TilesAccessException, TilesContainerFactoryException

public class TilesException
extends RuntimeException

Root class for all Tiles-exceptions.

Version:
$Rev: 819649 $ $Date: 2009-09-28 19:11:21 +0200 (lun, 28 set 2009) $
See Also:
Serialized Form

Constructor Summary
TilesException()
          Constructor.
TilesException(String message)
          Constructor.
TilesException(String message, Throwable e)
          Create a new TilesException from an existing exception.
TilesException(Throwable e)
          Create a new TilesException wrapping an existing exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TilesException

public TilesException()
Constructor.


TilesException

public TilesException(String message)
Constructor.

Parameters:
message - The error or warning message.

TilesException

public TilesException(Throwable e)
Create a new TilesException wrapping 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.

TilesException

public TilesException(String message,
                      Throwable e)
Create a new TilesException 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 cause to be wrapped.


Copyright © 2001-2009 Apache Software Foundation. All Rights Reserved.