This is an automated email from the ASF dual-hosted git repository.
yuqi4733 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new d8a936a88a [Minor] fix error message (#7518)
d8a936a88a is described below
commit d8a936a88aa066c1f9355b840dd443eb93284d5d
Author: Justin Mclean <[email protected]>
AuthorDate: Wed Jul 2 09:31:36 2025 +0800
[Minor] fix error message (#7518)
### 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
---
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 5feaf8b5ba..256f9cadc5 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);
}
}