2
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
27
* @summary Attempt to read inaccessible property can produce
28
* exception of the wrong type.
29
* @author Tom Rodriguez
32
* @run main/othervm -Djava.security.manager=allow compiler.exceptions.ExceptionInInit
35
package compiler.exceptions;
37
import java.security.AccessController;
38
import java.security.PrivilegedAction;
40
public class ExceptionInInit {
42
public static void main(String[] args) {
47
System.setSecurityManager(new java.rmi.RMISecurityManager());
49
} catch (ExceptionInInitializerError e) {
53
public static class FooBar {
54
static String test = "test";
60
public static class Test extends FooBar {
63
* An AccessControlException is thrown in the static initializer of the
64
* class FooBar. This exception should produce an ExceptionInInitializer
65
* error. Instead it causes a more cryptic ClassNotFound error.
67
* The following is an excerpt from the output from java.security.debug=all
69
* access: access denied (java.util.PropertyPermission test.src read)
70
* java.lang.Exception: Stack trace
71
* at java.lang.Thread.dumpStack(Thread.java:938)
72
* at java.security.AccessControlContext.checkPermission(AccessControlContext.java:184)
73
* at java.security.AccessController.checkPermission(AccessController.java:402)
74
* at java.lang.SecurityManager.checkPermission(SecurityManager.java:516)
75
* at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1035)
76
* at java.lang.System.getProperty(System.java:441)
77
* at sun.security.action.GetPropertyAction.run(GetPropertyAction.java:73)
78
* at java.security.AccessController.doPrivileged(Native Method)
79
* at ExceptionInInit$Test.<clinit>(ExceptionInInit.java:33)
80
* at ExceptionInInit.main(ExceptionInInit.java:18)
81
* access: domain that failed ProtectionDomain (file:/tmp/exceptionInInit/<no certificates>)
83
* The following exception is occurring when this test program tries
84
* to access the test.src property.
86
private static String test =
87
AccessController.doPrivileged((PrivilegedAction<String>)() -> System.getProperty("test.src", "."));
92
public static void showTest() {
93
System.err.println(test);