try {
<X>;
}
catch (<some exception indicating X failed due to lack of export>) {
execute( () -> mod.addExports(...)); // address the problem
<X>; // now it succeeds
}Thanks, David
try {
<X>;
}
catch (<some exception indicating X failed due to lack of export>) {
execute( () -> mod.addExports(...)); // address the problem
<X>; // now it succeeds
}Thanks, David