ptolemy.graph
Class GraphActionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by ptolemy.kernel.util.KernelException
              extended by ptolemy.kernel.util.IllegalActionException
                  extended by ptolemy.graph.GraphActionException
All Implemented Interfaces:
java.io.Serializable

public class GraphActionException
extends IllegalActionException

Exception for graph action errors. This is a non-RuntimeException and should be caught by calling methods.

Since:
Ptolemy II 2.1
Version:
$Id: GraphActionException.java 57040 2010-01-27 20:52:32Z cxh $
Author:
Mingyung Ko
See Also:
Serialized Form
Accepted Rating:
Red (ssb)
Proposed Rating:
Red (myko)

Constructor Summary
GraphActionException(java.lang.String message)
          Constructor with an argument of text description.
GraphActionException(java.lang.Throwable cause, java.lang.String message)
          Constructor with an argument of text description.
 
Method Summary
 
Methods inherited from class ptolemy.kernel.util.KernelException
_setCause, _setMessage, generateMessage, generateMessage, generateMessage, getCause, getFullName, getMessage, getName, getNameable1, getNameable2, printStackTrace, printStackTrace, printStackTrace, stackTraceToString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GraphActionException

public GraphActionException(java.lang.String message)
Constructor with an argument of text description.

Parameters:
message - Detailed description of the error.

GraphActionException

public GraphActionException(java.lang.Throwable cause,
                            java.lang.String message)
Constructor with an argument of text description.

Parameters:
message - Detailed description of the error.
cause - The cause of this exception, or null if the cause is not known or nonexistent.