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 8b3723a commit 5294bc0Copy full SHA for 5294bc0
engine/runtime-parser-processor/src/main/java/org/enso/runtime/parser/processor/IRProcessor.java
@@ -167,7 +167,7 @@ private List<TypeElement> orderByReferences(Set<TypeElement> classesToProcess) {
167
classesToProcess.stream()
168
.filter(clazz -> clazz.getSimpleName().toString().equals(depName))
169
.findFirst()
170
- .orElseThrow(() -> new AssertionError("Class not found: " + depName));
+ .orElseThrow(() -> new IRProcessingException("Class not found: " + depName, null));
171
return depClazz;
172
})
173
.toList();
0 commit comments