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

Packages that use SyntaxException
net.scheinerman.phoenix.interpreter.exceptions This package contains classes that deal with exceptions that can be thrown during Phoenix program execution. 
net.scheinerman.phoenix.interpreter.parser This package contains classes that deal with the parsing of arithmetic expressions during Phoenix program execution. 
 

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

Subclasses of SyntaxException in net.scheinerman.phoenix.interpreter.exceptions
 class IllegalArgumentException
           
 class IllegalIdentifierException
           
 class UnknownFunctionException
           
 

Uses of SyntaxException in net.scheinerman.phoenix.interpreter.parser
 

Methods in net.scheinerman.phoenix.interpreter.parser that throw SyntaxException
private static ParserTreeNode Parser.genParseTree(java.lang.String expression)
           
private static Variable Parser.getValue(java.lang.String phrase)
           
static Variable Parser.parse(java.lang.String expression, Interpreter i)