Home
last modified time | relevance | path

Searched refs:pae (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/test/java/libcore/java/security/
DPrivilegedActionExceptionTest.java37 PrivilegedActionException pae = new PrivilegedActionException(e); in testGetException() local
39 assertSame(e, pae.getException()); in testGetException()
40 assertSame(e, pae.getCause()); in testGetException()
/libcore/ojluni/src/main/java/java/security/
DSigner.java149 } catch (PrivilegedActionException pae) { in setKeyPair()
150 throw (KeyManagementException) pae.getException(); in setKeyPair()
/libcore/ojluni/src/main/java/javax/crypto/
DJarVerifier.java100 } catch (java.security.PrivilegedActionException pae) { in verify()
101 throw new SecurityException("Cannot load " + url.toString(), pae); in verify()
/libcore/ojluni/src/main/java/sun/nio/fs/
DPollingWatchService.java131 } catch (PrivilegedActionException pae) { in register()
132 Throwable cause = pae.getCause(); in register()
135 throw new AssertionError(pae); in register()
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
DURLJarFile.java238 } catch (PrivilegedActionException pae) { in retrieve()
239 throw (IOException) pae.getException(); in retrieve()
/libcore/ojluni/src/main/java/sun/misc/
DURLClassPath.java588 } catch (java.security.PrivilegedActionException pae) {
589 throw (IOException)pae.getException();
921 } catch (java.security.PrivilegedActionException pae) {
922 throw (IOException)pae.getException();
1132 } catch (java.security.PrivilegedActionException pae) {
/libcore/ojluni/src/main/java/java/net/
DSocksSocketImpl.java93 } catch (java.security.PrivilegedActionException pae) { in privilegedConnect()
94 throw (IOException) pae.getException(); in privilegedConnect()
DURLClassLoader.java377 } catch (java.security.PrivilegedActionException pae) { in findClass()
378 throw (ClassNotFoundException) pae.getException(); in findClass()