Skip to content

Commit 36314a9

Browse files
author
Mandy Chung
committedOct 4, 2023
8267509: Improve IllegalAccessException message to include the cause of the exception
Reviewed-by: liach, naoto
1 parent ddacf92 commit 36314a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/java.base/share/classes/java/lang/invoke/MethodHandle.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1719,7 +1719,8 @@ MethodHandle setVarargs(MemberName member) throws IllegalAccessException {
17191719
try {
17201720
return this.withVarargs(true);
17211721
} catch (IllegalArgumentException ex) {
1722-
throw member.makeAccessException("cannot make variable arity", null);
1722+
throw new IllegalAccessException("cannot make variable arity: " + member +
1723+
" does not have a trailing array parameter");
17231724
}
17241725
}
17251726

3 commit comments

Comments
 (3)

openjdk-notifier[bot] commented on Oct 4, 2023

@openjdk-notifier[bot]

shipilev commented on Oct 23, 2023

@shipilev
Member

/backport jdk21u

openjdk[bot] commented on Oct 23, 2023

@openjdk[bot]

@shipilev the backport was successfully created on the branch shipilev-backport-36314a90 in my personal fork of openjdk/jdk21u. To create a pull request with this backport targeting openjdk/jdk21u:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 36314a90 from the openjdk/jdk repository.

The commit being backported was authored by Mandy Chung on 4 Oct 2023 and was reviewed by Chen Liang and Naoto Sato.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21u:

$ git fetch https://github.com/openjdk-bots/jdk21u.git shipilev-backport-36314a90:shipilev-backport-36314a90
$ git checkout shipilev-backport-36314a90
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk21u.git shipilev-backport-36314a90
Please sign in to comment.