public static void main(String[] args) {
junit.textui.TestRunner.run(AccessControlExceptionTest.class);
}
protected Object[] getData() {
AllPermission allperms = new AllPermission();
return new Object[] { new AccessControlException(null),
new AccessControlException("string1"),
new AccessControlException(null, null),
new AccessControlException("string2", allperms) };
}