jdk/src/share/classes/java/rmi/dgc/VMID.java
changeset 10419 12c063b39232
parent 5506 202f599c92aa
child 11117 b6e68b1344d4
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   168 
   168 
   169         } catch (IOException ignore) {
   169         } catch (IOException ignore) {
   170             /* can't happen, but be deterministic anyway. */
   170             /* can't happen, but be deterministic anyway. */
   171             addrHash = new byte[0];
   171             addrHash = new byte[0];
   172         } catch (NoSuchAlgorithmException complain) {
   172         } catch (NoSuchAlgorithmException complain) {
   173             throw new InternalError(complain.toString());
   173             throw new InternalError(complain.toString(), complain);
   174         }
   174         }
   175         return addrHash;
   175         return addrHash;
   176     }
   176     }
   177 }
   177 }