Re: RFR 9 7180225 : SecurityExceptions not defined in some class loader methods

2016-08-17 Thread Brent Christian
On 8/16/16 8:33 PM, Mandy Chung wrote: On Aug 16, 2016, at 1:54 PM, Brent Christian wrote: Bug: https://bugs.openjdk.java.net/browse/JDK-7180225 Webrev: http://cr.openjdk.java.net/~bchristi/7180225/webrev.01/webrev/ Specdiff:

Re: RFR 9 7180225 : SecurityExceptions not defined in some class loader methods

2016-08-17 Thread Sean Mullan
Looks fine to me. --Sean On 08/16/2016 02:54 PM, Brent Christian wrote: Hi, Please review this change which does some cleanup around documenting conditions for throwing SecurityExceptions. It adds a missing @throws tag to Class.forName(String, boolean, ClassLoader), and consolidates

Re: RFR 9 7180225 : SecurityExceptions not defined in some class loader methods

2016-08-16 Thread Mandy Chung
> On Aug 16, 2016, at 1:54 PM, Brent Christian > wrote: > > Hi, > > Please review this change which does some cleanup around documenting > conditions for throwing SecurityExceptions. > > It adds a missing @throws tag to Class.forName(String, boolean,

RFR 9 7180225 : SecurityExceptions not defined in some class loader methods

2016-08-16 Thread Brent Christian
Hi, Please review this change which does some cleanup around documenting conditions for throwing SecurityExceptions. It adds a missing @throws tag to Class.forName(String, boolean, ClassLoader), and consolidates specifics in the @throws tags of ClassLoader & Thread. Bug: