ptolemy.actor.gt
Class GraphTransformationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by ptolemy.kernel.util.KernelException
              extended by ptolemy.actor.gt.GraphTransformationException
All Implemented Interfaces:
java.io.Serializable

public class GraphTransformationException
extends KernelException

Superclass of any exception to be thrown in model transformation.

Since:
Ptolemy II 7.1
Version:
$Id: GraphTransformationException.java 54815 2009-06-30 05:18:27Z tfeng $
Author:
Thomas Huining Feng
See Also:
Serialized Form
Accepted Rating:
Red (tfeng)
Proposed Rating:
Yellow (tfeng)

Constructor Summary
GraphTransformationException()
          Construct an exception with a no specific detail message.
GraphTransformationException(java.lang.String message)
          Construct an exception with a detail message.
GraphTransformationException(java.lang.String message, java.lang.Throwable cause)
          Construct an exception with a detail message and a cause.
GraphTransformationException(java.lang.Throwable cause)
          Construct an exception with a cause.
 
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

GraphTransformationException

public GraphTransformationException()
Construct an exception with a no specific detail message.


GraphTransformationException

public GraphTransformationException(java.lang.String message)
Construct an exception with a detail message.

Parameters:
message - The message.

GraphTransformationException

public GraphTransformationException(java.lang.String message,
                                    java.lang.Throwable cause)
Construct an exception with a detail message and a cause.

Parameters:
cause - The cause of this exception.
message - The message.

GraphTransformationException

public GraphTransformationException(java.lang.Throwable cause)
Construct an exception with a cause.

Parameters:
cause - The cause of this exception.