@@ -157,7 +157,7 @@ Object writeReplace() {
157
157
/**********************************************************************
158
158
*/
159
159
160
- protected JsonLocation _location ;
160
+ protected TokenStreamLocation _location ;
161
161
162
162
/**
163
163
* Path through which problem that triggering throwing of
@@ -191,7 +191,7 @@ protected JacksonException(String msg, Throwable rootCause) {
191
191
this (null , msg , null , rootCause );
192
192
}
193
193
194
- protected JacksonException (String msg , JsonLocation loc , Throwable rootCause ) {
194
+ protected JacksonException (String msg , TokenStreamLocation loc , Throwable rootCause ) {
195
195
this (null , msg , loc , rootCause );
196
196
}
197
197
@@ -201,7 +201,7 @@ protected JacksonException(Closeable processor, Throwable rootCause) {
201
201
_location = _nonNullLocation (null );
202
202
}
203
203
204
- protected JacksonException (Closeable processor , String msg , JsonLocation loc ,
204
+ protected JacksonException (Closeable processor , String msg , TokenStreamLocation loc ,
205
205
Throwable rootCause ) {
206
206
super (msg , rootCause );
207
207
_processor = processor ;
@@ -212,7 +212,7 @@ protected JacksonException(Closeable processor, String msg)
212
212
{
213
213
super (msg );
214
214
_processor = processor ;
215
- JsonLocation loc = null ;
215
+ TokenStreamLocation loc = null ;
216
216
if (processor instanceof JsonParser ) {
217
217
// 17-Aug-2015, tatu: Use of token location makes some sense from databinding,
218
218
// since actual parsing (current) location is typically only needed for low-level
@@ -227,7 +227,7 @@ protected JacksonException(Closeable processor, String msg, Throwable problem)
227
227
{
228
228
super (msg , problem );
229
229
_processor = processor ;
230
- JsonLocation loc = null ;
230
+ TokenStreamLocation loc = null ;
231
231
if (problem instanceof JacksonException ) {
232
232
loc = ((JacksonException ) problem ).getLocation ();
233
233
} else if (processor instanceof JsonParser ) {
@@ -237,15 +237,15 @@ protected JacksonException(Closeable processor, String msg, Throwable problem)
237
237
_location = _nonNullLocation (loc );
238
238
}
239
239
240
- protected JacksonException (Closeable processor , String msg , JsonLocation loc )
240
+ protected JacksonException (Closeable processor , String msg , TokenStreamLocation loc )
241
241
{
242
242
super (msg );
243
243
_processor = processor ;
244
244
_location = _nonNullLocation (loc );
245
245
}
246
246
247
- private static JsonLocation _nonNullLocation (JsonLocation loc ) {
248
- return (loc == null ) ? JsonLocation .NA : loc ;
247
+ private static TokenStreamLocation _nonNullLocation (TokenStreamLocation loc ) {
248
+ return (loc == null ) ? TokenStreamLocation .NA : loc ;
249
249
}
250
250
251
251
// @since 3.0
@@ -417,15 +417,15 @@ public StringBuilder getPathReference(StringBuilder sb)
417
417
/**
418
418
* Accessor for location information related to position within input
419
419
* or output (depending on operation), if available; if not available
420
- * may return {@link JsonLocation #NA} (but never {@code null}).
420
+ * may return {@link TokenStreamLocation #NA} (but never {@code null}).
421
421
*<p>
422
422
* Accuracy of location information depends on backend (format) as well
423
423
* as (in some cases) operation being performed.
424
424
*
425
425
* @return Location in input or output that triggered the problem reported, if
426
426
* available; {@code null} otherwise.
427
427
*/
428
- public JsonLocation getLocation () { return _location ; }
428
+ public TokenStreamLocation getLocation () { return _location ; }
429
429
430
430
/**
431
431
* Method that allows accessing the original "message" argument,
@@ -510,7 +510,7 @@ protected String _buildMessage()
510
510
if (baseMessage == null ) {
511
511
baseMessage = "N/A" ;
512
512
}
513
- JsonLocation loc = getLocation ();
513
+ TokenStreamLocation loc = getLocation ();
514
514
String suffix = messageSuffix ();
515
515
// mild optimization, if nothing extra is needed:
516
516
StringBuilder sb = new StringBuilder (200 );
0 commit comments