Skip to content

Commit 4133188

Browse files
committed
error message fixed
1 parent aa740db commit 4133188

File tree

1 file changed

+1
-1
lines changed
  • visualvm/libs.profiler/profiler.oql/src/org/graalvm/visualvm/lib/profiler/oql/engine/api/impl

1 file changed

+1
-1
lines changed

visualvm/libs.profiler/profiler.oql/src/org/graalvm/visualvm/lib/profiler/oql/engine/api/impl/OQLEngineImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ private void executeQuery(OQLQueryImpl q, ObjectVisitor visitor)
218218

219219
clazz = snapshot.findClass(className);
220220
if (clazz == null) {
221-
throw new OQLException(className + " is not found!"); // NOI18N
221+
throw new OQLException(className + " was not found!"); // NOI18N
222222
}
223223
}
224224

0 commit comments

Comments
 (0)