ptolemy.data.expr
Class UnknownResultException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by ptolemy.kernel.util.KernelRuntimeException
                  extended by ptolemy.data.expr.UnknownResultException
All Implemented Interfaces:
java.io.Serializable

public class UnknownResultException
extends KernelRuntimeException

Thrown on an attempt to evaluate an expression that can not be determined because some variables are unknown.

Since:
Ptolemy II 2.0
Version:
$Id: UnknownResultException.java 38798 2005-07-08 20:00:01Z cxh $
Author:
Paul Whitaker
See Also:
Serialized Form
Accepted Rating:
Red (pwhitake)
Proposed Rating:
Red (pwhitake)

Constructor Summary
UnknownResultException(Nameable obj)
          Constructs an Exception with a detail message that is only the name of the argument.
UnknownResultException(Nameable obj, java.lang.String detail)
          Constructs an Exception with a detail message that includes the name of the first argument.
UnknownResultException(java.lang.String detail)
          Constructs an Exception with a detail message.
 
Method Summary
 
Methods inherited from class ptolemy.kernel.util.KernelRuntimeException
_setCause, _setMessage, getCause, getMessage, getNameables, printStackTrace, printStackTrace, printStackTrace
 
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

UnknownResultException

public UnknownResultException(java.lang.String detail)
Constructs an Exception with a detail message.

Parameters:
detail - The message.

UnknownResultException

public UnknownResultException(Nameable obj)
Constructs an Exception with a detail message that is only the name of the argument.

Parameters:
obj - The object.

UnknownResultException

public UnknownResultException(Nameable obj,
                              java.lang.String detail)
Constructs an Exception with a detail message that includes the name of the first argument.

Parameters:
obj - The object.
detail - The message.