125126127128129130131132133134
try { mainPolicy = (Policy) Class.forName(cname).newInstance(); } catch (SecurityException e) { throw e; } catch (Exception e) { throw new PolicyInitializationException( "unable to construct main policy", e); } ensureDependenciesResolved(); }
888990919293949596
} catch (SecurityException e) { throw e; } catch (PolicyInitializationException e) { throw e; } catch (Exception e) { throw new PolicyInitializationException( "unable to construct base policy", e); } }