Building Parsers with Java

sjm.examples.query
Class UnrecognizedVariableException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--sjm.examples.query.UnrecognizedVariableException

public class UnrecognizedVariableException
extends java.lang.RuntimeException

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

See Also:
Serialized Form

Constructor Summary
UnrecognizedVariableException()
          Constructs a UnrecognizedVariableException with no detail message.
UnrecognizedVariableException(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

UnrecognizedVariableException

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

UnrecognizedVariableException

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

by Steve Metsker