コード例 #1
0
 // Throws a program exception with the given message.
 private void error(String message) throws ProgramException {
   throw new ProgramException(
       message
           + " in "
           + callStack.getTopFunction()
           + "."
           + currentInstruction.getIndexInFunction());
 }