diff -r 1558f7600497 -r 0627478c1504 jdk/src/java.base/windows/classes/sun/nio/fs/WindowsException.java --- a/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsException.java Fri Apr 08 16:38:37 2016 +0100 +++ b/jdk/src/java.base/windows/classes/sun/nio/fs/WindowsException.java Fri Apr 08 09:36:11 2016 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -69,6 +69,12 @@ return errorString(); } + @Override + public Throwable fillInStackTrace() { + // This is an internal exception; the stack trace is irrelevant. + return this; + } + private IOException translateToIOException(String file, String other) { // not created with last error if (lastError() == 0)