jdk/src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java
changeset 10701 2c8dde454979
parent 10596 39b3a979e600
child 11284 2750cfd2352c
equal deleted inserted replaced
10700:31c24f40f614 10701:2c8dde454979
  1659                 java.security.AccessController.doPrivileged(
  1659                 java.security.AccessController.doPrivileged(
  1660                     new java.security.PrivilegedExceptionAction<IOException>() {
  1660                     new java.security.PrivilegedExceptionAction<IOException>() {
  1661                         public IOException run() throws Exception {
  1661                         public IOException run() throws Exception {
  1662                             return (IOException)
  1662                             return (IOException)
  1663                                 rememberedException.getClass()
  1663                                 rememberedException.getClass()
  1664                                 .getConstructor(new Class[] { String.class })
  1664                                 .getConstructor(new Class<?>[] { String.class })
  1665                                 .newInstance(args);
  1665                                 .newInstance(args);
  1666                         }
  1666                         }
  1667                     });
  1667                     });
  1668             chainedException.initCause(rememberedException);
  1668             chainedException.initCause(rememberedException);
  1669             return chainedException;
  1669             return chainedException;