cdx.scorebot.scoring.logic
Class InvalidLValueException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by cdx.scorebot.scoring.logic.LogicException
              extended by cdx.scorebot.scoring.logic.InvalidLValueException
All Implemented Interfaces:
java.io.Serializable

public class InvalidLValueException
extends LogicException

Thrown if the logic tries to assign a value to a literal, test result, test configuration option, or other invalid lvalue. Only variables are valid lvalues!

Author:
David Underhill
See Also:
Serialized Form

Constructor Summary
InvalidLValueException()
          creates an exception with the default message
InvalidLValueException(java.lang.String s)
          creates an Exception with the specified message
 
Method Summary
 
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

InvalidLValueException

public InvalidLValueException()
creates an exception with the default message


InvalidLValueException

public InvalidLValueException(java.lang.String s)
creates an Exception with the specified message

Parameters:
s - Instantiates the error with passed error message.