jdk/src/share/classes/javax/management/remote/rmi/RMIConnectionImpl.java
changeset 21656 d4c777ccb1db
parent 18205 17a6d802d24a
child 23010 6dadb192ad81
equal deleted inserted replaced
21655:55f32ae4f920 21656:d4c777ccb1db
  1611         return null;
  1611         return null;
  1612     }
  1612     }
  1613 
  1613 
  1614     /**
  1614     /**
  1615      * Construct a new IOException with a nested exception.
  1615      * Construct a new IOException with a nested exception.
  1616      * The nested exception is set only if JDK >= 1.4
  1616      * The nested exception is set only if JDK {@literal >= 1.4}
  1617      */
  1617      */
  1618     private static IOException newIOException(String message,
  1618     private static IOException newIOException(String message,
  1619                                               Throwable cause) {
  1619                                               Throwable cause) {
  1620         final IOException x = new IOException(message);
  1620         final IOException x = new IOException(message);
  1621         return EnvHelp.initCause(x,cause);
  1621         return EnvHelp.initCause(x,cause);