1
1
package com .fasterxml .jackson .databind ;
2
2
3
- import java .io .IOException ;
4
3
import java .text .DateFormat ;
5
4
import java .text .ParseException ;
6
5
import java .util .*;
@@ -332,7 +331,7 @@ public ObjectTreeNode createObjectNode() {
332
331
333
332
@ SuppressWarnings ("unchecked" )
334
333
@ Override
335
- public JsonNode readTree (JsonParser p ) throws IOException {
334
+ public JsonNode readTree (JsonParser p ) throws JacksonException {
336
335
// NOTE: inlined version of `_bindAsTree()` from `ObjectReader`
337
336
JsonToken t = p .currentToken ();
338
337
if (t == null ) {
@@ -358,17 +357,17 @@ public JsonNode readTree(JsonParser p) throws IOException {
358
357
* this method does not allow use of contextual annotations.
359
358
*/
360
359
@ Override
361
- public <T > T readValue (JsonParser p , Class <T > type ) throws IOException {
360
+ public <T > T readValue (JsonParser p , Class <T > type ) throws JacksonException {
362
361
return readValue (p , getTypeFactory ().constructType (type ));
363
362
}
364
363
365
364
@ Override
366
- public <T > T readValue (JsonParser p , TypeReference <T > refType ) throws IOException {
365
+ public <T > T readValue (JsonParser p , TypeReference <T > refType ) throws JacksonException {
367
366
return readValue (p , getTypeFactory ().constructType (refType ));
368
367
}
369
368
370
369
@ Override
371
- public <T > T readValue (JsonParser p , ResolvedType type ) throws IOException {
370
+ public <T > T readValue (JsonParser p , ResolvedType type ) throws JacksonException {
372
371
if (!(type instanceof JavaType )) {
373
372
throw new UnsupportedOperationException (
374
373
"Only support `JavaType` implementation of `ResolvedType`, not: " +type .getClass ().getName ());
@@ -377,7 +376,7 @@ public <T> T readValue(JsonParser p, ResolvedType type) throws IOException {
377
376
}
378
377
379
378
@ SuppressWarnings ("unchecked" )
380
- public <T > T readValue (JsonParser p , JavaType type ) throws IOException {
379
+ public <T > T readValue (JsonParser p , JavaType type ) throws JacksonException {
381
380
JsonDeserializer <Object > deser = findRootValueDeserializer (type );
382
381
if (deser == null ) {
383
382
reportBadDefinition (type ,
@@ -985,12 +984,12 @@ public Calendar constructCalendar(Date d) {
985
984
* @return String value found; not {@code null} (exception should be thrown if no suitable
986
985
* value found)
987
986
*
988
- * @throws IOException If there are problems either reading content (underlying parser
987
+ * @throws JacksonException If there are problems either reading content (underlying parser
989
988
* problem) or finding expected scalar value
990
989
*/
991
990
public String extractScalarFromObject (JsonParser p , JsonDeserializer <?> deser ,
992
991
Class <?> scalarType )
993
- throws IOException
992
+ throws JacksonException
994
993
{
995
994
return (String ) handleUnexpectedToken (constructType (scalarType ), p );
996
995
}
@@ -1007,12 +1006,16 @@ public String extractScalarFromObject(JsonParser p, JsonDeserializer<?> deser,
1007
1006
* annotations that the property (passed to this method -- usually property that
1008
1007
* has custom serializer that called this method) has.
1009
1008
*/
1010
- public <T > T readPropertyValue (JsonParser p , BeanProperty prop , Class <T > type ) throws IOException {
1009
+ public <T > T readPropertyValue (JsonParser p , BeanProperty prop , Class <T > type )
1010
+ throws JacksonException
1011
+ {
1011
1012
return readPropertyValue (p , prop , getTypeFactory ().constructType (type ));
1012
1013
}
1013
1014
1014
1015
@ SuppressWarnings ("unchecked" )
1015
- public <T > T readPropertyValue (JsonParser p , BeanProperty prop , JavaType type ) throws IOException {
1016
+ public <T > T readPropertyValue (JsonParser p , BeanProperty prop , JavaType type )
1017
+ throws JacksonException
1018
+ {
1016
1019
JsonDeserializer <Object > deser = findContextualValueDeserializer (type , prop );
1017
1020
if (deser == null ) {
1018
1021
return reportBadDefinition (type , String .format (
@@ -1039,7 +1042,7 @@ public <T> T readPropertyValue(JsonParser p, BeanProperty prop, JavaType type) t
1039
1042
*/
1040
1043
public boolean handleUnknownProperty (JsonParser p , JsonDeserializer <?> deser ,
1041
1044
Object instanceOrClass , String propName )
1042
- throws IOException
1045
+ throws JacksonException
1043
1046
{
1044
1047
LinkedNode <DeserializationProblemHandler > h = _config .getProblemHandlers ();
1045
1048
while (h != null ) {
@@ -1075,11 +1078,11 @@ public boolean handleUnknownProperty(JsonParser p, JsonDeserializer<?> deser,
1075
1078
*
1076
1079
* @return Key value to use
1077
1080
*
1078
- * @throws IOException To indicate unrecoverable problem, usually based on <code>msg</code>
1081
+ * @throws JacksonException To indicate unrecoverable problem, usually based on <code>msg</code>
1079
1082
*/
1080
1083
public Object handleWeirdKey (Class <?> keyClass , String keyValue ,
1081
1084
String msg , Object ... msgArgs )
1082
- throws IOException
1085
+ throws JacksonException
1083
1086
{
1084
1087
// but if not handled, just throw exception
1085
1088
msg = _format (msg , msgArgs );
@@ -1119,11 +1122,11 @@ public Object handleWeirdKey(Class<?> keyClass, String keyValue,
1119
1122
*
1120
1123
* @return Property value to use
1121
1124
*
1122
- * @throws IOException To indicate unrecoverable problem, usually based on <code>msg</code>
1125
+ * @throws JacksonException To indicate unrecoverable problem, usually based on <code>msg</code>
1123
1126
*/
1124
1127
public Object handleWeirdStringValue (Class <?> targetClass , String value ,
1125
1128
String msg , Object ... msgArgs )
1126
- throws IOException
1129
+ throws JacksonException
1127
1130
{
1128
1131
// but if not handled, just throw exception
1129
1132
msg = _format (msg , msgArgs );
@@ -1163,11 +1166,11 @@ public Object handleWeirdStringValue(Class<?> targetClass, String value,
1163
1166
*
1164
1167
* @return Property value to use
1165
1168
*
1166
- * @throws IOException To indicate unrecoverable problem, usually based on <code>msg</code>
1169
+ * @throws JacksonException To indicate unrecoverable problem, usually based on <code>msg</code>
1167
1170
*/
1168
1171
public Object handleWeirdNumberValue (Class <?> targetClass , Number value ,
1169
1172
String msg , Object ... msgArgs )
1170
- throws IOException
1173
+ throws JacksonException
1171
1174
{
1172
1175
msg = _format (msg , msgArgs );
1173
1176
LinkedNode <DeserializationProblemHandler > h = _config .getProblemHandlers ();
@@ -1192,7 +1195,7 @@ public Object handleWeirdNumberValue(Class<?> targetClass, Number value,
1192
1195
1193
1196
public Object handleWeirdNativeValue (JavaType targetType , Object badValue ,
1194
1197
JsonParser p )
1195
- throws IOException
1198
+ throws JacksonException
1196
1199
{
1197
1200
LinkedNode <DeserializationProblemHandler > h = _config .getProblemHandlers ();
1198
1201
final Class <?> raw = targetType .getRawClass ();
@@ -1232,7 +1235,7 @@ public Object handleWeirdNativeValue(JavaType targetType, Object badValue,
1232
1235
@ SuppressWarnings ("resource" )
1233
1236
public Object handleMissingInstantiator (Class <?> instClass , ValueInstantiator valueInst ,
1234
1237
JsonParser p , String msg , Object ... msgArgs )
1235
- throws IOException
1238
+ throws JacksonException
1236
1239
{
1237
1240
if (p == null ) {
1238
1241
p = getParser ();
@@ -1294,7 +1297,7 @@ public Object handleMissingInstantiator(Class<?> instClass, ValueInstantiator va
1294
1297
*/
1295
1298
public Object handleInstantiationProblem (Class <?> instClass , Object argument ,
1296
1299
Throwable t )
1297
- throws IOException
1300
+ throws JacksonException
1298
1301
{
1299
1302
LinkedNode <DeserializationProblemHandler > h = _config .getProblemHandlers ();
1300
1303
while (h != null ) {
@@ -1314,7 +1317,7 @@ public Object handleInstantiationProblem(Class<?> instClass, Object argument,
1314
1317
h = h .next ();
1315
1318
}
1316
1319
// 18-May-2016, tatu: Only wrap if not already a valid type to throw
1317
- ClassUtil .throwIfIOE (t );
1320
+ ClassUtil .throwIfJacksonE (t );
1318
1321
// [databind#2164]: but see if wrapping is desired
1319
1322
if (!isEnabled (DeserializationFeature .WRAP_EXCEPTIONS )) {
1320
1323
ClassUtil .throwIfRTE (t );
@@ -1326,14 +1329,14 @@ public Object handleInstantiationProblem(Class<?> instClass, Object argument,
1326
1329
/*
1327
1330
public Object handleUnexpectedToken(Class<?> instClass, JsonToken t,
1328
1331
JsonParser p, String msg, Object... msgArgs)
1329
- throws IOException
1332
+ throws JacksonException
1330
1333
{
1331
1334
return handleUnexpectedToken(constructType(instClass), t, p, msg, msgArgs);
1332
1335
}
1333
1336
*/
1334
1337
1335
1338
public Object handleUnexpectedToken (Class <?> instClass , JsonParser p )
1336
- throws IOException
1339
+ throws JacksonException
1337
1340
{
1338
1341
return handleUnexpectedToken (constructType (instClass ), p .currentToken (), p , null );
1339
1342
}
@@ -1351,7 +1354,7 @@ public Object handleUnexpectedToken(Class<?> instClass, JsonParser p)
1351
1354
* @return Object that should be constructed, if any; has to be of type <code>instClass</code>
1352
1355
*/
1353
1356
public Object handleUnexpectedToken (JavaType targetType , JsonParser p )
1354
- throws IOException
1357
+ throws JacksonException
1355
1358
{
1356
1359
return handleUnexpectedToken (targetType , p .currentToken (), p , null );
1357
1360
}
@@ -1371,7 +1374,7 @@ public Object handleUnexpectedToken(JavaType targetType, JsonParser p)
1371
1374
*/
1372
1375
public Object handleUnexpectedToken (JavaType targetType , JsonToken t ,
1373
1376
JsonParser p , String msg , Object ... msgArgs )
1374
- throws IOException
1377
+ throws JacksonException
1375
1378
{
1376
1379
msg = _format (msg , msgArgs );
1377
1380
LinkedNode <DeserializationProblemHandler > h = _config .getProblemHandlers ();
@@ -1423,11 +1426,11 @@ public Object handleUnexpectedToken(JavaType targetType, JsonToken t,
1423
1426
*
1424
1427
* @return {@link JavaType} that id resolves to
1425
1428
*
1426
- * @throws IOException To indicate unrecoverable problem, if resolution cannot
1429
+ * @throws JacksonException To indicate unrecoverable problem, if resolution cannot
1427
1430
* be made to work
1428
1431
*/
1429
1432
public JavaType handleUnknownTypeId (JavaType baseType , String id ,
1430
- TypeIdResolver idResolver , String extraDesc ) throws IOException
1433
+ TypeIdResolver idResolver , String extraDesc ) throws JacksonException
1431
1434
{
1432
1435
LinkedNode <DeserializationProblemHandler > h = _config .getProblemHandlers ();
1433
1436
while (h != null ) {
@@ -1455,7 +1458,7 @@ public JavaType handleUnknownTypeId(JavaType baseType, String id,
1455
1458
}
1456
1459
1457
1460
public JavaType handleMissingTypeId (JavaType baseType ,
1458
- TypeIdResolver idResolver , String extraDesc ) throws IOException
1461
+ TypeIdResolver idResolver , String extraDesc ) throws JacksonException
1459
1462
{
1460
1463
LinkedNode <DeserializationProblemHandler > h = _config .getProblemHandlers ();
1461
1464
while (h != null ) {
0 commit comments