sbrt.kernel.math
Class UnboundedVariableException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by sbrt.kernel.math.UnboundedVariableException
All Implemented Interfaces:
java.io.Serializable

public class UnboundedVariableException
extends java.lang.RuntimeException

This class is used to indicate that a variable is unbounded.

Author:
This class was written and documented by Jeremiah Wright while in the Wagner lab.
See Also:
Serialized Form

Constructor Summary
UnboundedVariableException(java.lang.Object variable)
          Constructs a new exception from the provided unbounded variable.
 
Method Summary
 java.lang.Object getVariable()
          Returns the unbounded variable.
 
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

UnboundedVariableException

public UnboundedVariableException(java.lang.Object variable)
Constructs a new exception from the provided unbounded variable.

Parameters:
variable - the unbounded variable.
Method Detail

getVariable

public java.lang.Object getVariable()
Returns the unbounded variable.

Returns:
the unbounded variable.