Skip to content

Commit 8049314

Browse files
committed
Use DotName.toString() instead of Type.toString()
1 parent 641829f commit 8049314

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/ClientProxyGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Collection<Resource> generate(BeanInfo bean, String beanClassName,
174174

175175
// Exceptions
176176
for (Type exception : method.exceptions()) {
177-
forward.addException(exception.toString());
177+
forward.addException(exception.name().toString());
178178
}
179179
// Method params
180180
ResultHandle[] params = new ResultHandle[method.parametersCount()];

0 commit comments

Comments
 (0)