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 e7e0891 commit c3bb9f9Copy full SHA for c3bb9f9
core/deployment/src/main/java/io/quarkus/deployment/recording/BytecodeRecorderImpl.java
@@ -1418,7 +1418,12 @@ public void prepare(MethodContext context) {
1418
} catch (Exception e) {
1419
throw new RuntimeException(
1420
"Couldn't load object of type " + i.propertyType.getName() + " for property '" + i.getName()
1421
- + "' on object '" + param + "'.");
+ + "' on object '" + param
1422
+ + "'. Please, check the Bytecode Recording documentation " +
1423
+ "https://quarkus.io/guides/writing-extensions#bytecode-recording to be sure this type "
1424
+ +
1425
+ "is supported to be passed to @Record classes.",
1426
+ e);
1427
}
1428
if (ctorParamIndex != null) {
1429
nonDefaultConstructorHandles[ctorParamIndex] = val;
0 commit comments