1
1
/*
2
- * Copyright (c) 2001, 2020 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2001, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -379,11 +379,8 @@ public static IllegalAccessException newIllegalAccessException(Class<?> currentC
379
379
380
380
String msg = currentClass + currentSuffix + " cannot access " ;
381
381
if (m2 .isExported (memberPackageName , m1 )) {
382
-
383
382
// module access okay so include the modifiers in the message
384
- msg += "a member of " + memberClass + memberSuffix +
385
- " with modifiers \" " + Modifier .toString (modifiers ) + "\" " ;
386
-
383
+ msg += "a member of " + memberClass + memberSuffix + msgSuffix (modifiers );
387
384
} else {
388
385
// module access failed
389
386
msg += memberClass + memberSuffix + " because "
@@ -410,11 +407,8 @@ private static IllegalAccessException newIllegalAccessException(Class<?> memberC
410
407
411
408
String msg = "JNI attached native thread (null caller frame) cannot access " ;
412
409
if (m2 .isExported (memberPackageName )) {
413
-
414
410
// module access okay so include the modifiers in the message
415
- msg += "a member of " + memberClass + memberSuffix +
416
- " with modifiers \" " + Modifier .toString (modifiers ) + "\" " ;
417
-
411
+ msg += "a member of " + memberClass + memberSuffix + msgSuffix (modifiers );
418
412
} else {
419
413
// module access failed
420
414
msg += memberClass + memberSuffix + " because "
@@ -424,6 +418,16 @@ private static IllegalAccessException newIllegalAccessException(Class<?> memberC
424
418
return new IllegalAccessException (msg );
425
419
}
426
420
421
+ private static String msgSuffix (int modifiers ) {
422
+ boolean packageAccess =
423
+ ((Modifier .PRIVATE |
424
+ Modifier .PROTECTED |
425
+ Modifier .PUBLIC ) & modifiers ) == 0 ;
426
+ return packageAccess ?
427
+ " with package access" :
428
+ " with modifiers \" " + Modifier .toString (modifiers ) + "\" " ;
429
+ }
430
+
427
431
/**
428
432
* Returns true if {@code currentClass} and {@code memberClass}
429
433
* are nestmates - that is, if they have the same nesthost as
0 commit comments