Uses of Class
edu.rice.cs.dynamicjava.interpreter.InterpreterException

Packages that use InterpreterException
edu.rice.cs.dynamicjava.interpreter   
edu.rice.cs.dynamicjava.sourcechecker   
 

Uses of InterpreterException in edu.rice.cs.dynamicjava.interpreter
 

Subclasses of InterpreterException in edu.rice.cs.dynamicjava.interpreter
 class CheckerException
           
 class CompositeException
           
 class EvaluatorException
           
 class InternalException
          Represents a file system-level problem that occurs in accessing a source file.
 class ParserException
           
 

Methods in edu.rice.cs.dynamicjava.interpreter that return InterpreterException
static InterpreterException CompositeException.make(Iterable<? extends InterpreterException> errors)
           
 

Methods in edu.rice.cs.dynamicjava.interpreter that return types with arguments of type InterpreterException
 SizedIterable<InterpreterException> CompositeException.exceptions()
           
 

Method parameters in edu.rice.cs.dynamicjava.interpreter with type arguments of type InterpreterException
static InterpreterException CompositeException.make(Iterable<? extends InterpreterException> errors)
           
 

Methods in edu.rice.cs.dynamicjava.interpreter that throw InterpreterException
 Option<Object> Interpreter.interpret(String code)
           
 

Constructor parameters in edu.rice.cs.dynamicjava.interpreter with type arguments of type InterpreterException
CompositeException(Iterable<? extends InterpreterException> exceptions)
           
 

Uses of InterpreterException in edu.rice.cs.dynamicjava.sourcechecker
 

Subclasses of InterpreterException in edu.rice.cs.dynamicjava.sourcechecker
 class SourceException
          Represents a file system-level problem that occurs in accessing a source file.
 

Methods in edu.rice.cs.dynamicjava.sourcechecker that throw InterpreterException
 void SourceChecker.check(File... sources)
           
 void SourceChecker.check(Iterable<? extends File> sources)
           
 void SourceChecker.check(Iterable<? extends File> sources, Iterable<? extends File> classPath)
           
 Relation<TypeDeclaration,ClassChecker> CompilationUnitChecker.extractDeclarations(CompilationUnit u)
          Produce a ClassChecker for each TypeDeclaration in the compilation unit.