List of usage examples for java.security AccessControlException initCause
public synchronized Throwable initCause(Throwable cause)
From source file:org.apache.hadoop.hive.ql.security.authorization.StorageBasedAuthorizationProvider.java
private static AccessControlException accessControlException(Exception e) { AccessControlException ace = new AccessControlException(e.getMessage()); ace.initCause(e); return ace;/*from w ww.j av a 2s . c om*/ }