--- old/src/share/classes/java/security/PrivilegedActionException.java 2013-06-28 10:31:50.946376817 -0700 +++ new/src/share/classes/java/security/PrivilegedActionException.java 2013-06-28 10:31:50.790376820 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -27,13 +27,13 @@ /** * This exception is thrown by - * doPrivileged(PrivilegedExceptionAction) and - * doPrivileged(PrivilegedExceptionAction, - * AccessControlContext context) to indicate + * {@code doPrivileged(PrivilegedExceptionAction)} and + * {@code doPrivileged(PrivilegedExceptionAction, + * AccessControlContext context)} to indicate * that the action being performed threw a checked exception. The exception * thrown by the action can be obtained by calling the - * getException method. In effect, an - * PrivilegedActionException is a "wrapper" + * {@code getException} method. In effect, an + * {@code PrivilegedActionException} is a "wrapper" * for an exception thrown by a privileged action. * *

As of release 1.4, this exception has been retrofitted to conform to @@ -69,14 +69,14 @@ /** * Returns the exception thrown by the privileged computation that - * resulted in this PrivilegedActionException. + * resulted in this {@code PrivilegedActionException}. * *

This method predates the general-purpose exception chaining facility. * The {@link Throwable#getCause()} method is now the preferred means of * obtaining this information. * * @return the exception thrown by the privileged computation that - * resulted in this PrivilegedActionException. + * resulted in this {@code PrivilegedActionException}. * @see PrivilegedExceptionAction * @see AccessController#doPrivileged(PrivilegedExceptionAction) * @see AccessController#doPrivileged(PrivilegedExceptionAction, @@ -89,7 +89,7 @@ /** * Returns the cause of this exception (the exception thrown by * the privileged computation that resulted in this - * PrivilegedActionException). + * {@code PrivilegedActionException}). * * @return the cause of this exception. * @since 1.4