jdk/src/share/classes/java/lang/reflect/Proxy.java
changeset 10419 12c063b39232
parent 10342 ca0984bc9d32
child 16087 89b565a23835
child 14342 8435a30053c1
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   608             return cons.newInstance(new Object[] { h });
   608             return cons.newInstance(new Object[] { h });
   609         } catch (NoSuchMethodException |
   609         } catch (NoSuchMethodException |
   610                  IllegalAccessException |
   610                  IllegalAccessException |
   611                  InstantiationException |
   611                  InstantiationException |
   612                  InvocationTargetException e) {
   612                  InvocationTargetException e) {
   613             throw new InternalError(e.toString());
   613             throw new InternalError(e.toString(), e);
   614         }
   614         }
   615     }
   615     }
   616 
   616 
   617     /**
   617     /**
   618      * Returns true if and only if the specified class was dynamically
   618      * Returns true if and only if the specified class was dynamically