Package ptolemy.actor.gt
Class GraphTransformationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ptolemy.kernel.util.KernelException
-
- 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$
- Author:
- Thomas Huining Feng
- See Also:
- Serialized Form
- Pt.AcceptedRating:
- Red (tfeng)
- Pt.ProposedRating:
- Yellow (tfeng)
-
-
Constructor Summary
Constructors Constructor Description 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
-
-
-
-
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.
-
-