From 0dbb9698db8f03dd929460270375c445641d112a Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Thu, 24 Nov 2016 11:45:23 +0100 Subject: [PATCH] [vfs] diagnostics (EA-92268) --- .../openapi/vfs/newvfs/impl/VirtualFileSystemEntry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/impl/VirtualFileSystemEntry.java b/platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/impl/VirtualFileSystemEntry.java index ecbaf4637d5e..bc59a01911c4 100644 --- a/platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/impl/VirtualFileSystemEntry.java +++ b/platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/impl/VirtualFileSystemEntry.java @@ -381,7 +381,7 @@ public abstract class VirtualFileSystemEntry extends NewVirtualFile { return super.getCharset(); } catch (IOException e) { - throw new RuntimeException(e); + throw new RuntimeException(getPath(), e); } } return charset;