sbrt.kernel.math.algebra
Class IllegalFreeVariableException

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

public class IllegalFreeVariableException
extends java.lang.RuntimeException

This class is used to indicate the presence of an illegal free variable.

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

Constructor Summary
IllegalFreeVariableException(java.lang.Object variable)
          Constructs a new illegal free variable exception.
 
Method Summary
 java.lang.Object getVariable()
          Returns the illegal free 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

IllegalFreeVariableException

public IllegalFreeVariableException(java.lang.Object variable)
Constructs a new illegal free variable exception.

Parameters:
variable - the illegal free variable. null is not allowed.
Method Detail

getVariable

public java.lang.Object getVariable()
Returns the illegal free variable.

Returns:
the illegal free variable.