org.jplate.foundation.exception
Class RemoveException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jplate.JPlateException
              extended by org.jplate.foundation.FoundationException
                  extended by org.jplate.foundation.exception.RemoveException
All Implemented Interfaces:
java.io.Serializable

public class RemoveException
extends FoundationException

Thrown when removing something fails.

Modifications:
    $Author: sfloess $
    $Date: 2008-12-02 12:32:45 -0500 (Tue, 02 Dec 2008) $
    $Revision: 479 $
    $HeadURL: https://jplate.svn.sourceforge.net/svnroot/jplate/trunk/src/dev/java/org/jplate/foundation/exception/RemoveException.java $
    

See Also:
Serialized Form

Constructor Summary
RemoveException()
          Default constructor.
RemoveException(java.lang.String msg)
          This constructor sets the message.
RemoveException(java.lang.String msg, java.lang.Throwable rootCause)
          This constructor sets the message and root cause.
RemoveException(java.lang.Throwable rootCause)
          This constructor sets the root cause.
 
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

RemoveException

public RemoveException()
Default constructor.


RemoveException

public RemoveException(java.lang.String msg)
This constructor sets the message.

Parameters:
msg - A message about why self was raised.

RemoveException

public RemoveException(java.lang.Throwable rootCause)
This constructor sets the root cause.

Parameters:
rootCause - The exception that caused self to be raised.

RemoveException

public RemoveException(java.lang.String msg,
                       java.lang.Throwable rootCause)
This constructor sets the message and root cause.

Parameters:
msg - A message about why self was raised.
rootCause - The exception that caused self to be raised.