We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e41be8e commit 985c611Copy full SHA for 985c611
modules/lang-painless/src/main/java/org/elasticsearch/painless/DefBootstrap.java
@@ -202,7 +202,7 @@ protected MethodHandle computeValue(Class<?> receiverType) {
202
return lookup(flavor, name, receiverType).asType(type);
203
} catch (Throwable t) {
204
// ClassValue.getFromHashMap wraps checked exceptions as Error, so we
205
- // use a sentinel class [PainlessWrapperError] here to work around
+ // use a sentinel class [PainlessWrappedException] here to work around
206
// this issue and later unwrap the original exception
207
Def.rethrow(t instanceof Exception ? new PainlessWrappedException((Exception) t) : t);
208
throw new AssertionError();
0 commit comments