yuqi1129 commented on PR #12015:
URL: https://github.com/apache/gravitino/pull/12015#issuecomment-4976571186
@jarredhj0214
Have you verify whether the following code works in your environment?
```java
try {
return clazz == null ? doLoadClass(name, resolve) : clazz;
} catch (ClassNotFoundException e) {
throw e; // benign miss: keep it cause-less for probe-driven callers
(Janino)
} catch (Exception e) {
throw new ClassNotFoundException("Failed to load " + name, e);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]