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 e73d058 commit fd55a19Copy full SHA for fd55a19
engine/runtime-parser-processor/src/main/java/org/enso/runtime/parser/processor/IRProcessor.java
@@ -135,7 +135,7 @@ private List<TypeElement> orderByReferences(Set<TypeElement> classesToProcess) {
135
var paramType = param.asType();
136
var paramTypeElem = processingEnv.getTypeUtils().asElement(paramType);
137
if (paramTypeElem == null) {
138
- throw new IllegalStateException("Cannot find element for type " + paramType);
+ throw new IRProcessingException("Cannot find element for type " + paramType, null);
139
}
140
return paramTypeElem.getSimpleName().toString();
141
})
0 commit comments