sbrt.kernel.math
Class MissingVariableException

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

public class MissingVariableException
extends java.lang.RuntimeException

This class is used to indicate that a varible is missing.

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

Constructor Summary
MissingVariableException(java.lang.Object variable)
          Constructs an exception to indicate the provided variable is missing.
 
Method Summary
 java.lang.Object getVariable()
          Returns the missing 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

MissingVariableException

public MissingVariableException(java.lang.Object variable)
Constructs an exception to indicate the provided variable is missing.

Parameters:
variable - the missing variable.
Method Detail

getVariable

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

Returns:
the missing variable.