@@ -78,7 +78,7 @@ public Integer serialize(Object input) {
7878 Integer result = convertImpl (input );
7979 if (result == null ) {
8080 throw new CoercingSerializeException (
81- "Expected type 'Int' but was '" + typeName (input ) + "'."
81+ "Expected type 'Int' but was '" + typeName (input ) + "'."
8282 );
8383 }
8484 return result ;
@@ -89,7 +89,7 @@ public Integer parseValue(Object input) {
8989 Integer result = convertImpl (input );
9090 if (result == null ) {
9191 throw new CoercingParseValueException (
92- "Expected type 'Int' but was '" + typeName (input ) + "'."
92+ "Expected type 'Int' but was '" + typeName (input ) + "'."
9393 );
9494 }
9595 return result ;
@@ -133,7 +133,7 @@ public Double serialize(Object input) {
133133 Double result = convertImpl (input );
134134 if (result == null ) {
135135 throw new CoercingSerializeException (
136- "Expected type 'Float' but was '" + typeName (input ) + "'."
136+ "Expected type 'Float' but was '" + typeName (input ) + "'."
137137 );
138138 }
139139 return result ;
@@ -145,7 +145,7 @@ public Double parseValue(Object input) {
145145 Double result = convertImpl (input );
146146 if (result == null ) {
147147 throw new CoercingParseValueException (
148- "Expected type 'Float' but was '" + typeName (input ) + "'."
148+ "Expected type 'Float' but was '" + typeName (input ) + "'."
149149 );
150150 }
151151 return result ;
@@ -214,7 +214,7 @@ public Boolean serialize(Object input) {
214214 Boolean result = convertImpl (input );
215215 if (result == null ) {
216216 throw new CoercingSerializeException (
217- "Expected type 'Boolean' but was '" + typeName (input ) + "'."
217+ "Expected type 'Boolean' but was '" + typeName (input ) + "'."
218218 );
219219 }
220220 return result ;
@@ -225,7 +225,7 @@ public Boolean parseValue(Object input) {
225225 Boolean result = convertImpl (input );
226226 if (result == null ) {
227227 throw new CoercingParseValueException (
228- "Expected type 'Boolean' but was '" + typeName (input ) + "'."
228+ "Expected type 'Boolean' but was '" + typeName (input ) + "'."
229229 );
230230 }
231231 return result ;
@@ -266,7 +266,7 @@ public String serialize(Object input) {
266266 String result = convertImpl (input );
267267 if (result == null ) {
268268 throw new CoercingSerializeException (
269- "Expected type 'ID' but was '" + typeName (input ) + "'."
269+ "Expected type 'ID' but was '" + typeName (input ) + "'."
270270 );
271271 }
272272 return result ;
@@ -277,7 +277,7 @@ public String parseValue(Object input) {
277277 String result = convertImpl (input );
278278 if (result == null ) {
279279 throw new CoercingParseValueException (
280- "Expected type 'ID' but was '" + typeName (input ) + "'."
280+ "Expected type 'ID' but was '" + typeName (input ) + "'."
281281 );
282282 }
283283 return result ;
@@ -326,7 +326,7 @@ public Long serialize(Object input) {
326326 Long result = convertImpl (input );
327327 if (result == null ) {
328328 throw new CoercingSerializeException (
329- "Expected type 'Long' but was '" + typeName (input ) + "'."
329+ "Expected type 'Long' but was '" + typeName (input ) + "'."
330330 );
331331 }
332332 return result ;
@@ -337,7 +337,7 @@ public Long parseValue(Object input) {
337337 Long result = convertImpl (input );
338338 if (result == null ) {
339339 throw new CoercingParseValueException (
340- "Expected type 'Long' but was '" + typeName (input ) + "'."
340+ "Expected type 'Long' but was '" + typeName (input ) + "'."
341341 );
342342 }
343343 return result ;
@@ -393,7 +393,7 @@ public Short serialize(Object input) {
393393 Short result = convertImpl (input );
394394 if (result == null ) {
395395 throw new CoercingSerializeException (
396- "Expected type 'Short' but was '" + typeName (input ) + "'."
396+ "Expected type 'Short' but was '" + typeName (input ) + "'."
397397 );
398398 }
399399 return result ;
@@ -404,7 +404,7 @@ public Short parseValue(Object input) {
404404 Short result = convertImpl (input );
405405 if (result == null ) {
406406 throw new CoercingParseValueException (
407- "Expected type 'Short' but was '" + typeName (input ) + "'."
407+ "Expected type 'Short' but was '" + typeName (input ) + "'."
408408 );
409409 }
410410 return result ;
@@ -452,7 +452,7 @@ public Byte serialize(Object input) {
452452 Byte result = convertImpl (input );
453453 if (result == null ) {
454454 throw new CoercingSerializeException (
455- "Expected type 'Byte' but was '" + typeName (input ) + "'."
455+ "Expected type 'Byte' but was '" + typeName (input ) + "'."
456456 );
457457 }
458458 return result ;
@@ -463,7 +463,7 @@ public Byte parseValue(Object input) {
463463 Byte result = convertImpl (input );
464464 if (result == null ) {
465465 throw new CoercingParseValueException (
466- "Expected type 'Byte' but was '" + typeName (input ) + "'."
466+ "Expected type 'Byte' but was '" + typeName (input ) + "'."
467467 );
468468 }
469469 return result ;
@@ -509,7 +509,7 @@ public BigInteger serialize(Object input) {
509509 BigInteger result = convertImpl (input );
510510 if (result == null ) {
511511 throw new CoercingSerializeException (
512- "Expected type 'BigInteger' but was '" + typeName (input ) + "'."
512+ "Expected type 'BigInteger' but was '" + typeName (input ) + "'."
513513 );
514514 }
515515 return result ;
@@ -520,7 +520,7 @@ public BigInteger parseValue(Object input) {
520520 BigInteger result = convertImpl (input );
521521 if (result == null ) {
522522 throw new CoercingParseValueException (
523- "Expected type 'BigInteger' but was '" + typeName (input ) + "'."
523+ "Expected type 'BigInteger' but was '" + typeName (input ) + "'."
524524 );
525525 }
526526 return result ;
@@ -569,7 +569,7 @@ public BigDecimal serialize(Object input) {
569569 BigDecimal result = convertImpl (input );
570570 if (result == null ) {
571571 throw new CoercingSerializeException (
572- "Expected type 'BigDecimal' but was '" + typeName (input ) + "'."
572+ "Expected type 'BigDecimal' but was '" + typeName (input ) + "'."
573573 );
574574 }
575575 return result ;
@@ -580,7 +580,7 @@ public BigDecimal parseValue(Object input) {
580580 BigDecimal result = convertImpl (input );
581581 if (result == null ) {
582582 throw new CoercingParseValueException (
583- "Expected type 'BigDecimal' but was '" + typeName (input ) + "'."
583+ "Expected type 'BigDecimal' but was '" + typeName (input ) + "'."
584584 );
585585 }
586586 return result ;
@@ -625,7 +625,7 @@ public Character serialize(Object input) {
625625 Character result = convertImpl (input );
626626 if (result == null ) {
627627 throw new CoercingSerializeException (
628- "Expected type 'Char' but was '" + typeName (input ) + "'."
628+ "Expected type 'Char' but was '" + typeName (input ) + "'."
629629 );
630630 }
631631 return result ;
@@ -636,7 +636,7 @@ public Character parseValue(Object input) {
636636 Character result = convertImpl (input );
637637 if (result == null ) {
638638 throw new CoercingParseValueException (
639- "Expected type 'Char' but was '" + typeName (input ) + "'."
639+ "Expected type 'Char' but was '" + typeName (input ) + "'."
640640 );
641641 }
642642 return result ;
0 commit comments