I want to create an Eclipse Plug-in that will be activated automatically when Eclipse launch an Exception (while a java program is running). How can I do this?

Then I need informations about the Exception launched (name, class, etc.). Which class/package can give me these informations?

Until now I created only eclipse plugin activated by button (simple AbstracHandler).

有帮助吗?

解决方案

That's possible for uncaught exceptions only using a non Eclipse specific normal Java mechanism: You can enable a global handler using Thread.setDefaultUncaughtExceptionHandler.

That said, you might break existing behaviour of Eclipse by doing this.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top