Let's say Java Class A invokes Java Class B (like "java classB") . I am getting the exception in class B. How do I want to know which class has invoked "java classB"?
You cannot know what invoked the java process from ClassB. The Exception will only go as deep as it's own call stack from it's process. If something else started the process, even if it was java itself, there is no way of know this from ClassB.
You are better off using helpful logging (of both debug/info messages and exception stacktraces) from ClassA. You will have to make sure that ClassB exits appropriately when it fails (exit with a code other than 0) and then ClassA can see this failure in the process it spawned.