-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[backport] Include owner in ErrorNonExistentField message
This should be particularly helpful for synthetic field names like `evidence$21`.
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
class scala.ScalaReflectionException: Scala field x isn't represented as a Java field, neither it has a Java accessor method | ||
note that private parameters of class constructors don't get mapped onto fields and/or accessors, | ||
unless they are used outside of their declaring constructors. | ||
class scala.ScalaReflectionException: Scala field x of class A isn't represented as a Java field, nor does it have a | ||
Java accessor method. One common reason for this is that it may be a private class parameter | ||
not used outside the primary constructor. |