Uses of Class
ca.bcit.cst.comp2526.assign2b.solution.StackUnderflowException

Uses of StackUnderflowException in ca.bcit.cst.comp2526.assign2b.solution
 

Methods in ca.bcit.cst.comp2526.assign2b.solution that throw StackUnderflowException
 int RPNCalculator.getResult()
          Get the current result from the operand stack.
 void RPNCalculator.perform(Operation operation)
          Perform the specified operation with the top two values on the operand stack.
 int Stack.pop()
          Removes the top item from the stack.
static int RPNCalculatorUtils.processFormula(RPNCalculator calc, java.lang.String formula)
          Process the speicified formula using the provided calculator.
 int Stack.topValue()
          Return the top value off of the stack withour actually removing it.