views:

38

answers:

2

I got this error message in Eclipse today.

alt text

Any idea what went wrong?

+2  A: 

I've found that a lot of plugins break if Eclipse's file cache gets out of sync with the file system. Try doing an F5 refresh of your entire workspace and see if the problem goes away.

EDIT

My general approach with this sort of thing is to try to ignore it. IMO, it is only worth looking into the cause of problems that significantly interfere with your ability to do real work. Fortunately, most Eclipse bugs don't fall into that category ...

Stephen C
+1  A: 

Some plugin has a bug that causes a NullPointerException, where the exception may even occur somewhere else in Eclipse. (I've had a similar problem with the Scala IDE breaking Java refactoring.)

You can try uninstalling suspicious plugins until the error goes away.

starblue