@@ -48,7 +48,7 @@ public class TypeMismatchException extends PropertyAccessException {
48
48
49
49
50
50
/**
51
- * Create a new TypeMismatchException.
51
+ * Create a new {@code TypeMismatchException} .
52
52
* @param propertyChangeEvent the PropertyChangeEvent that resulted in the problem
53
53
* @param requiredType the required target type
54
54
*/
@@ -57,7 +57,7 @@ public TypeMismatchException(PropertyChangeEvent propertyChangeEvent, Class<?> r
57
57
}
58
58
59
59
/**
60
- * Create a new TypeMismatchException.
60
+ * Create a new {@code TypeMismatchException} .
61
61
* @param propertyChangeEvent the PropertyChangeEvent that resulted in the problem
62
62
* @param requiredType the required target type (or {@code null} if not known)
63
63
* @param cause the root cause (may be {@code null})
@@ -79,7 +79,7 @@ public TypeMismatchException(PropertyChangeEvent propertyChangeEvent, @Nullable
79
79
}
80
80
81
81
/**
82
- * Create a new TypeMismatchException without PropertyChangeEvent.
82
+ * Create a new {@code TypeMismatchException} without a {@code PropertyChangeEvent} .
83
83
* @param value the offending value that couldn't be converted (may be {@code null})
84
84
* @param requiredType the required target type (or {@code null} if not known)
85
85
* @see #initPropertyName
@@ -89,7 +89,7 @@ public TypeMismatchException(@Nullable Object value, @Nullable Class<?> required
89
89
}
90
90
91
91
/**
92
- * Create a new TypeMismatchException without PropertyChangeEvent.
92
+ * Create a new {@code TypeMismatchException} without a {@code PropertyChangeEvent} .
93
93
* @param value the offending value that couldn't be converted (may be {@code null})
94
94
* @param requiredType the required target type (or {@code null} if not known)
95
95
* @param cause the root cause (may be {@code null})
@@ -120,8 +120,8 @@ public void initPropertyName(String propertyName) {
120
120
/**
121
121
* Return the name of the affected property, if available.
122
122
*/
123
- @ Nullable
124
123
@ Override
124
+ @ Nullable
125
125
public String getPropertyName () {
126
126
return this .propertyName ;
127
127
}
0 commit comments