Package ptolemy.data.expr
Class UnknownResultException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ptolemy.kernel.util.KernelRuntimeException
-
- 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$
- Author:
- Paul Whitaker
- See Also:
- Serialized Form
- Pt.AcceptedRating:
- Red (pwhitake)
- Pt.ProposedRating:
- Red (pwhitake)
-
-
Constructor Summary
Constructors Constructor Description UnknownResultException(java.lang.String detail)
Constructs an Exception with a detail message.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.
-
Method Summary
-
Methods inherited from class ptolemy.kernel.util.KernelRuntimeException
_setCause, _setMessage, getCause, getMessage, getNameables, printStackTrace, printStackTrace, printStackTrace
-
-
-
-
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.
-
-