Building Parsers with Java

sjm.examples.sling
Class UnassignedVariableException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--sjm.examples.sling.UnassignedVariableException

public class UnassignedVariableException
extends java.lang.RuntimeException

Signals that a given string is not the name of a known variable.

See Also:
Serialized Form

Constructor Summary
UnassignedVariableException()
          Constructs a UnrecognizedVariableException with no detail message.
UnassignedVariableException(java.lang.String s)
          Constructs a UnrecognizedVariableException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnassignedVariableException

public UnassignedVariableException()
Constructs a UnrecognizedVariableException with no detail message.

UnassignedVariableException

public UnassignedVariableException(java.lang.String s)
Constructs a UnrecognizedVariableException with the specified detail message.
Parameters:
String - the detail message.

by Steve Metsker