Skip to content

Commit

Permalink
fix(exception): Malformed error message for MappingException log
Browse files Browse the repository at this point in the history
  • Loading branch information
MDeLuise authored and Coduz committed Aug 1, 2023
1 parent 8cb65b5 commit 433a2c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public InvalidValueMappingException(String name, Object value, Class<?> type) {
* @since 1.3.0
*/
public InvalidValueMappingException(Throwable cause, String name, Object value, Class<?> type) {
super(StorableErrorCodes.INVALID_VALUE, cause, value, type);
super(StorableErrorCodes.INVALID_VALUE, cause, name, value, type);

this.name = name;
this.value = value;
Expand Down

0 comments on commit 433a2c2

Please sign in to comment.