Javaassist Catch Block e.printStackTrace

49 Views Asked by At

We have the below Javaassist Code to add printStackTrace() to a catch block present inside a 3rd party Class

int position = catchBlocks[i].block().position();
int lineNumber = ctMethod.getMethodInfo().getLineNumber(position);
ctMethod.insertAt(lineNumber + 1, "System.out.println(\"Catch Block\");");
ctMethod.insertAt(lineNumber + 2, "e.printStackTrace();");

But, when we run - it throws the below error javaassist.CannotCompileException: [source error] no such class: e

What is that we are missing here?

Thanks in Advance!

0

There are 0 best solutions below