// If 'terminate' attribute is set to 'yes': Instanciate a
// RunTimeException, but it on the stack and throw an exception
if (_terminate == true) {
// Create a new instance of RunTimeException
final int einit = cpg.addMethodref("java.lang.RuntimeException",
"<init>",
"(Ljava/lang/String;)V");
il.append(new NEW(cpg.addClass("java.lang.RuntimeException")));
il.append(DUP);
il.append(new PUSH(cpg,"Termination forced by an " +