ptolemy.graph.analysis
Class AnalysisException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by ptolemy.graph.analysis.AnalysisException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
InvalidAnalyzerException

public class AnalysisException
extends java.lang.RuntimeException

Base exception for non-checked exceptions in the analyses package.

Since:
Ptolemy II 4.0
Version:
$Id: AnalysisException.java 38798 2005-07-08 20:00:01Z cxh $
Author:
Shahrooz Shahparnia
See Also:
Serialized Form
Accepted Rating:
Red (ssb)
Proposed Rating:
Red (shahrooz)

Constructor Summary
AnalysisException()
          The default constructor without arguments.
AnalysisException(java.lang.String message)
          Constructor with a text description as argument.
AnalysisException(java.lang.String message, java.lang.Throwable cause)
          Constructor with a text description and cause as argument.
 
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

AnalysisException

public AnalysisException()
The default constructor without arguments.


AnalysisException

public AnalysisException(java.lang.String message)
Constructor with a text description as argument.

Parameters:
message - The text description of the exception.

AnalysisException

public AnalysisException(java.lang.String message,
                         java.lang.Throwable cause)
Constructor with a text description and cause as argument.

Parameters:
message - The text description of the exception.
cause - The exception that caused this exception.