This happens in version:
org.eclipse.wst.sse.core: 1.2.1200.v202308180854
reproducible when trying to connect a TextFileDocumentProvider to a non-exisitng file like:
`IFile fileToLoad = ResourcesPlugin.getWorkspace().getRoot().getFile(new Path("/myproject/test.xml"));
See: https://github.com/eclipse-sourceediting/sourceediting/blame/ace69bc17f39220a3b7652576363e3bcffdfe38b/core/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/FileBufferModelManager.java#L596
The fileStore.openInputStream throws a CoreException when a FileNotFoundException occurs. The CoreException is then logged.
Hence: issue eclipse-platform #147: https://github.com/eclipse-sourceediting/sourceediting/commit/fac0aa24a44eb667ce3697c7b32718b9cb72abe8
these type of exceptions are meant to be ignored.
This happens in version: org.eclipse.wst.sse.core: 1.2.1200.v202308180854
reproducible when trying to connect a TextFileDocumentProvider to a non-exisitng file like: `IFile fileToLoad = ResourcesPlugin.getWorkspace().getRoot().getFile(new Path("/myproject/test.xml"));