(
String stringValue,
Object source,
TypeLiteral<?> type,
TypeConverterBinding typeConverterBinding)
| 191 | } |
| 192 | |
| 193 | public Errors converterReturnedNull( |
| 194 | String stringValue, |
| 195 | Object source, |
| 196 | TypeLiteral<?> type, |
| 197 | TypeConverterBinding typeConverterBinding) { |
| 198 | return addMessage( |
| 199 | ErrorId.CONVERTER_RETURNED_NULL, |
| 200 | "Received null converting '%s' (bound at %s) to %s\n using %s.", |
| 201 | stringValue, |
| 202 | convert(source), |
| 203 | type, |
| 204 | typeConverterBinding); |
| 205 | } |
| 206 | |
| 207 | public Errors conversionTypeError( |
| 208 | String stringValue, |
no test coverage detected