Uses of Class
net.scheinerman.phoenix.interpreter.exceptions.PhoenixRuntimeException

Packages that use PhoenixRuntimeException
net.scheinerman.phoenix.interpreter This package contains classes and packages for use in interpreting Phoenix programs. 
net.scheinerman.phoenix.interpreter.exceptions This package contains classes that deal with exceptions that can be thrown during Phoenix program execution. 
 

Uses of PhoenixRuntimeException in net.scheinerman.phoenix.interpreter
 

Fields in net.scheinerman.phoenix.interpreter declared as PhoenixRuntimeException
static PhoenixRuntimeException InterpreterData.ERROR
           
 

Methods in net.scheinerman.phoenix.interpreter with parameters of type PhoenixRuntimeException
protected  void TryInterpreter.dealWithError(PhoenixRuntimeException e)
           
protected  void Interpreter.dealWithError(PhoenixRuntimeException e)
           
 

Uses of PhoenixRuntimeException in net.scheinerman.phoenix.interpreter.exceptions
 

Subclasses of PhoenixRuntimeException in net.scheinerman.phoenix.interpreter.exceptions
 class IllegalArgumentException
           
 class IllegalIdentifierException
           
 class IOException
          This is the root of all I/O based exceptions that can be thrown during Phoenix program execution.
 class SyntaxException
          This is the root of all syntax based exceptions that can be thrown during Phoenix program execution.
 class UnknownFunctionException
           
 class UnsupportedOperatorException
           
 

Constructors in net.scheinerman.phoenix.interpreter.exceptions with parameters of type PhoenixRuntimeException
PhoenixRuntimeException(PhoenixRuntimeException e)
          Creates a new PhoenixRuntimException as a copy of another.