This project has retired. For details please refer to its Attic page.
TilesException (Tiles 2 2.0.7 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 org.apache.tiles.TilesException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CannotAccessMethodException, CannotInstantiateObjectException, DefinitionsFactoryException, PreparerException

public class TilesException
extends Exception

Root class for all Tiles-exceptions.

Version:
$Rev: 527536 $ $Date: 2007-04-11 17:44:51 +0200 (Wed, 11 Apr 2007) $
See Also:
Serialized Form

Constructor Summary
TilesException()
          Constructor.
TilesException(Exception e)
          Create a new TilesException wrapping an existing exception.
TilesException(String message)
          Constructor.
TilesException(String message, Exception e)
          Create a new TilesException from 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(Exception 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 exception to be wrapped.

TilesException

public TilesException(String message,
                      Exception 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 exception to be wrapped.


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