Index: AspectJEditor.java =================================================================== RCS file: /home/technology/org.eclipse.ajdt/AJDT_30M8_src/org.eclipse.ajdt/src/org/eclipse/ajdt/internal/ui/editor/AspectJEditor.java,v retrieving revision 1.1 diff -u -r1.1 AspectJEditor.java --- AspectJEditor.java 16 Apr 2004 07:58:01 -0000 1.1 +++ AspectJEditor.java 20 Apr 2004 15:59:40 -0000 @@ -322,7 +322,7 @@ } public void doSetInput(IEditorInput input) throws CoreException { - + super.doSetInput(input); if (input instanceof IFileEditorInput) { IFileEditorInput fInput = (IFileEditorInput) input; @@ -394,6 +394,8 @@ addNewMarkers(fInput); } catch (CoreException ce) { + //if file has been deleted, don't throw exception + if (fInput.getFile().exists()) AspectJPlugin.getDefault().getErrorHandler(). handleError("Advice marker updates failed", ce); }