MorePermissionPrivilegedExceptionAction mp =
new MorePermissionPrivilegedExceptionAction(dp, false);
LessPermissionPrivilegedExceptionAction lp =
new LessPermissionPrivilegedExceptionAction(mp, true);
try {
mp.takeAction();
} catch (Exception e) {
// Verify the test result
assertTrue("It is not the security exception.",
(e instanceof java.security.PrivilegedActionException));
} finally {