Skip to content

Commit

Permalink
Merge pull request #24 from Fox2Code/stub_InaccessibleObjectException
Browse files Browse the repository at this point in the history
Add `InaccessibleObjectException` stub.
  • Loading branch information
wagyourtail authored Nov 29, 2024
2 parents cb724f4 + eb9d891 commit f50cabe
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package xyz.wagyourtail.jvmdg.j9.stub.java_base;

import xyz.wagyourtail.jvmdg.version.Adapter;

@Adapter("java/lang/reflect/InaccessibleObjectException")
public class J_L_R_InaccessibleObjectException extends RuntimeException {
public J_L_R_InaccessibleObjectException() {}

public J_L_R_InaccessibleObjectException(String msg) {
super(msg);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void init() {
// AnnotatedType
// AnnotatedTypeVariable
// AnnotatedWildcardType
// InaccessibleObjectException
stub(J_L_R_InaccessibleObjectException.class);
stub(J_M_BigDecimal.class);
stub(J_M_BigInteger.class);
// MutableBigInteger
Expand Down

0 comments on commit f50cabe

Please sign in to comment.