Search code examples
eclipseexceptionpluginshandleractivation

Eclipse Plug-in activated when Eclipse launch an Exception


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).


Solution

  • 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.