edu.rice.cs.util.text
Class EditDocumentException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by edu.rice.cs.util.text.EditDocumentException
All Implemented Interfaces:
Serializable

public class EditDocumentException
extends RuntimeException

Exception thrown indicating an illegal state or operation on an EditDocument.

Version:
$Id: EditDocumentException.java 4447 2008-04-18 16:06:34Z rcartwright $
See Also:
Serialized Form

Constructor Summary
EditDocumentException(Throwable value)
          Constructs an exception with value.toString() as it's message.
EditDocumentException(Throwable value, String msg)
          Constructs an exception with a custom message string in addition to value.toString().
 
Method Summary
 Throwable getContainedThrowable()
          Returns the contained exception.
 
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

EditDocumentException

public EditDocumentException(Throwable value)
Constructs an exception with value.toString() as it's message.


EditDocumentException

public EditDocumentException(Throwable value,
                             String msg)
Constructs an exception with a custom message string in addition to value.toString().

Method Detail

getContainedThrowable

public Throwable getContainedThrowable()
Returns the contained exception.