jdk/src/share/classes/javax/management/remote/rmi/RMIConnectorServer.java
changeset 21656 d4c777ccb1db
parent 14917 bf08557604f8
child 23010 6dadb192ad81
equal deleted inserted replaced
21655:55f32ae4f920 21656:d4c777ccb1db
   818         '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'
   818         '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'
   819     };
   819     };
   820 
   820 
   821     /**
   821     /**
   822      * Construct a new IOException with a nested exception.
   822      * Construct a new IOException with a nested exception.
   823      * The nested exception is set only if JDK >= 1.4
   823      * The nested exception is set only if JDK {@literal >= 1.4}
   824      */
   824      */
   825     private static IOException newIOException(String message,
   825     private static IOException newIOException(String message,
   826                                               Throwable cause) {
   826                                               Throwable cause) {
   827         final IOException x = new IOException(message);
   827         final IOException x = new IOException(message);
   828         return EnvHelp.initCause(x,cause);
   828         return EnvHelp.initCause(x,cause);