This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.9 by this push:
new 75f922b38d [Minor] fix error message (#7540)
75f922b38d is described below
commit 75f922b38d36efee9c34c8ca6e98ae3fab560b41
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jul 2 10:54:54 2025 +0800
[Minor] fix error message (#7540)
### What changes were proposed in this pull request?
Fix error message
### Why are the changes needed?
Clarity
Fix: #(issue)
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
CI
Co-authored-by: Justin Mclean <[email protected]>
---
core/src/main/java/org/apache/gravitino/utils/IsolatedClassLoader.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/src/main/java/org/apache/gravitino/utils/IsolatedClassLoader.java
b/core/src/main/java/org/apache/gravitino/utils/IsolatedClassLoader.java
index e338f1a023..36e11f6001 100644
--- a/core/src/main/java/org/apache/gravitino/utils/IsolatedClassLoader.java
+++ b/core/src/main/java/org/apache/gravitino/utils/IsolatedClassLoader.java
@@ -172,7 +172,7 @@ public class IsolatedClassLoader implements Closeable {
try {
return clazz == null ? doLoadClass(name, resolve) : clazz;
} catch (Exception e) {
- throw new ClassNotFoundException("Class no found " + name, e);
+ throw new ClassNotFoundException("Class not found " + name, e);
}
}