Skip to content

Commit 75f922b

Browse files
[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]>
1 parent 352a33c commit 75f922b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/apache/gravitino/utils/IsolatedClassLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundE
172172
try {
173173
return clazz == null ? doLoadClass(name, resolve) : clazz;
174174
} catch (Exception e) {
175-
throw new ClassNotFoundException("Class no found " + name, e);
175+
throw new ClassNotFoundException("Class not found " + name, e);
176176
}
177177
}
178178

0 commit comments

Comments
 (0)