Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ private <T> JsonAdapter<T> lookupAdapter(Type type, Object cacheKey, boolean thr
+ type
+ "\nPossible Causes: \n"
+ "1. Missing @Json or @Json.Import annotation.\n"
+ "2. The avaje-jsonb-generator dependency was not available during compilation\n");
+ "2. The avaje-jsonb-generator dependency was not available during compilation"
+ (Runtime.version().feature() >= 23
? " or -proc full was not enabled in maven compiler\n"
: "\n"));
}
return null; // No adapter found
} catch (IllegalArgumentException e) {
Expand Down