1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 2<!-- NewPage --> 3<html lang="en"> 4<head> 5<!-- Generated by javadoc (version 1.7.0_10-ea) on Sun Jul 14 20:03:21 PDT 2013 --> 6<title>JsonProcessingException (Jackson JSON Processor)</title> 7<meta name="date" content="2013-07-14"> 8<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> 9</head> 10<body> 11<script type="text/javascript"><!-- 12 if (location.href.indexOf('is-external=true') == -1) { 13 parent.document.title="JsonProcessingException (Jackson JSON Processor)"; 14 } 15//--> 16</script> 17<noscript> 18<div>JavaScript is disabled on your browser.</div> 19</noscript> 20<!-- ========= START OF TOP NAVBAR ======= --> 21<div class="topNav"><a name="navbar_top"> 22<!-- --> 23</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> 24<!-- --> 25</a> 26<ul class="navList" title="Navigation"> 27<li><a href="../../../overview-summary.html">Overview</a></li> 28<li><a href="package-summary.html">Package</a></li> 29<li class="navBarCell1Rev">Class</li> 30<li><a href="class-use/JsonProcessingException.html">Use</a></li> 31<li><a href="package-tree.html">Tree</a></li> 32<li><a href="../../../deprecated-list.html">Deprecated</a></li> 33<li><a href="../../../index-all.html">Index</a></li> 34<li><a href="../../../help-doc.html">Help</a></li> 35</ul> 36</div> 37<div class="subNav"> 38<ul class="navList"> 39<li><a href="../../../org/codehaus/jackson/JsonParser.NumberType.html" title="enum in org.codehaus.jackson"><span class="strong">Prev Class</span></a></li> 40<li><a href="../../../org/codehaus/jackson/JsonStreamContext.html" title="class in org.codehaus.jackson"><span class="strong">Next Class</span></a></li> 41</ul> 42<ul class="navList"> 43<li><a href="../../../index.html?org/codehaus/jackson/JsonProcessingException.html" target="_top">Frames</a></li> 44<li><a href="JsonProcessingException.html" target="_top">No Frames</a></li> 45</ul> 46<ul class="navList" id="allclasses_navbar_top"> 47<li><a href="../../../allclasses-noframe.html">All Classes</a></li> 48</ul> 49<div> 50<script type="text/javascript"><!-- 51 allClassesLink = document.getElementById("allclasses_navbar_top"); 52 if(window==top) { 53 allClassesLink.style.display = "block"; 54 } 55 else { 56 allClassesLink.style.display = "none"; 57 } 58 //--> 59</script> 60</div> 61<div> 62<ul class="subNavList"> 63<li>Summary: </li> 64<li>Nested | </li> 65<li><a href="#field_summary">Field</a> | </li> 66<li><a href="#constructor_summary">Constr</a> | </li> 67<li><a href="#method_summary">Method</a></li> 68</ul> 69<ul class="subNavList"> 70<li>Detail: </li> 71<li><a href="#field_detail">Field</a> | </li> 72<li><a href="#constructor_detail">Constr</a> | </li> 73<li><a href="#method_detail">Method</a></li> 74</ul> 75</div> 76<a name="skip-navbar_top"> 77<!-- --> 78</a></div> 79<!-- ========= END OF TOP NAVBAR ========= --> 80<!-- ======== START OF CLASS DATA ======== --> 81<div class="header"> 82<div class="subTitle">org.codehaus.jackson</div> 83<h2 title="Class JsonProcessingException" class="title">Class JsonProcessingException</h2> 84</div> 85<div class="contentContainer"> 86<ul class="inheritance"> 87<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> 88<li> 89<ul class="inheritance"> 90<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">java.lang.Throwable</a></li> 91<li> 92<ul class="inheritance"> 93<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">java.lang.Exception</a></li> 94<li> 95<ul class="inheritance"> 96<li><a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">java.io.IOException</a></li> 97<li> 98<ul class="inheritance"> 99<li>org.codehaus.jackson.JsonProcessingException</li> 100</ul> 101</li> 102</ul> 103</li> 104</ul> 105</li> 106</ul> 107</li> 108</ul> 109<div class="description"> 110<ul class="blockList"> 111<li class="blockList"> 112<dl> 113<dt>All Implemented Interfaces:</dt> 114<dd><a href="http://docs.oracle.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a></dd> 115</dl> 116<dl> 117<dt>Direct Known Subclasses:</dt> 118<dd><a href="../../../org/codehaus/jackson/JsonGenerationException.html" title="class in org.codehaus.jackson">JsonGenerationException</a>, <a href="../../../org/codehaus/jackson/map/JsonMappingException.html" title="class in org.codehaus.jackson.map">JsonMappingException</a>, <a href="../../../org/codehaus/jackson/JsonParseException.html" title="class in org.codehaus.jackson">JsonParseException</a></dd> 119</dl> 120<hr> 121<br> 122<pre>public class <span class="strong">JsonProcessingException</span> 123extends <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> 124<div class="block">Intermediate base class for all problems encountered when 125 processing (parsing, generating) JSON content 126 that are not pure I/O problems. 127 Regular <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io"><code>IOException</code></a>s will be passed through as is. 128 Sub-class of <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io"><code>IOException</code></a> for convenience.</div> 129<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../serialized-form.html#org.codehaus.jackson.JsonProcessingException">Serialized Form</a></dd></dl> 130</li> 131</ul> 132</div> 133<div class="summary"> 134<ul class="blockList"> 135<li class="blockList"> 136<!-- =========== FIELD SUMMARY =========== --> 137<ul class="blockList"> 138<li class="blockList"><a name="field_summary"> 139<!-- --> 140</a> 141<h3>Field Summary</h3> 142<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> 143<caption><span>Fields</span><span class="tabEnd"> </span></caption> 144<tr> 145<th class="colFirst" scope="col">Modifier and Type</th> 146<th class="colLast" scope="col">Field and Description</th> 147</tr> 148<tr class="altColor"> 149<td class="colFirst"><code>protected <a href="../../../org/codehaus/jackson/JsonLocation.html" title="class in org.codehaus.jackson">JsonLocation</a></code></td> 150<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#mLocation">mLocation</a></strong></code> </td> 151</tr> 152</table> 153</li> 154</ul> 155<!-- ======== CONSTRUCTOR SUMMARY ======== --> 156<ul class="blockList"> 157<li class="blockList"><a name="constructor_summary"> 158<!-- --> 159</a> 160<h3>Constructor Summary</h3> 161<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> 162<caption><span>Constructors</span><span class="tabEnd"> </span></caption> 163<tr> 164<th class="colFirst" scope="col">Modifier</th> 165<th class="colLast" scope="col">Constructor and Description</th> 166</tr> 167<tr class="altColor"> 168<td class="colFirst"><code>protected </code></td> 169<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#JsonProcessingException(java.lang.String)">JsonProcessingException</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> msg)</code> </td> 170</tr> 171<tr class="rowColor"> 172<td class="colFirst"><code>protected </code></td> 173<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#JsonProcessingException(java.lang.String, org.codehaus.jackson.JsonLocation)">JsonProcessingException</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> msg, 174 <a href="../../../org/codehaus/jackson/JsonLocation.html" title="class in org.codehaus.jackson">JsonLocation</a> loc)</code> </td> 175</tr> 176<tr class="altColor"> 177<td class="colFirst"><code>protected </code></td> 178<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#JsonProcessingException(java.lang.String, org.codehaus.jackson.JsonLocation, java.lang.Throwable)">JsonProcessingException</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> msg, 179 <a href="../../../org/codehaus/jackson/JsonLocation.html" title="class in org.codehaus.jackson">JsonLocation</a> loc, 180 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> rootCause)</code> </td> 181</tr> 182<tr class="rowColor"> 183<td class="colFirst"><code>protected </code></td> 184<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#JsonProcessingException(java.lang.String, java.lang.Throwable)">JsonProcessingException</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> msg, 185 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> rootCause)</code> </td> 186</tr> 187<tr class="altColor"> 188<td class="colFirst"><code>protected </code></td> 189<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#JsonProcessingException(java.lang.Throwable)">JsonProcessingException</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> rootCause)</code> </td> 190</tr> 191</table> 192</li> 193</ul> 194<!-- ========== METHOD SUMMARY =========== --> 195<ul class="blockList"> 196<li class="blockList"><a name="method_summary"> 197<!-- --> 198</a> 199<h3>Method Summary</h3> 200<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> 201<caption><span>Methods</span><span class="tabEnd"> </span></caption> 202<tr> 203<th class="colFirst" scope="col">Modifier and Type</th> 204<th class="colLast" scope="col">Method and Description</th> 205</tr> 206<tr class="altColor"> 207<td class="colFirst"><code><a href="../../../org/codehaus/jackson/JsonLocation.html" title="class in org.codehaus.jackson">JsonLocation</a></code></td> 208<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#getLocation()">getLocation</a></strong>()</code> </td> 209</tr> 210<tr class="rowColor"> 211<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> 212<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#getMessage()">getMessage</a></strong>()</code> 213<div class="block">Default method overridden so that we can add location information</div> 214</td> 215</tr> 216<tr class="altColor"> 217<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> 218<td class="colLast"><code><strong><a href="../../../org/codehaus/jackson/JsonProcessingException.html#toString()">toString</a></strong>()</code> </td> 219</tr> 220</table> 221<ul class="blockList"> 222<li class="blockList"><a name="methods_inherited_from_class_java.lang.Throwable"> 223<!-- --> 224</a> 225<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a></h3> 226<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang">addSuppressed</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace()" title="class or interface in java.lang">fillInStackTrace</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#getCause()" title="class or interface in java.lang">getCause</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage()" title="class or interface in java.lang">getLocalizedMessage</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace()" title="class or interface in java.lang">getStackTrace</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed()" title="class or interface in java.lang">getSuppressed</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#initCause(java.lang.Throwable)" title="class or interface in java.lang">initCause</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace()" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#setStackTrace(java.lang.StackTraceElement[])" title="class or interface in java.lang">setStackTrace</a></code></li> 227</ul> 228<ul class="blockList"> 229<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> 230<!-- --> 231</a> 232<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> 233<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</a></code></li> 234</ul> 235</li> 236</ul> 237</li> 238</ul> 239</div> 240<div class="details"> 241<ul class="blockList"> 242<li class="blockList"> 243<!-- ============ FIELD DETAIL =========== --> 244<ul class="blockList"> 245<li class="blockList"><a name="field_detail"> 246<!-- --> 247</a> 248<h3>Field Detail</h3> 249<a name="mLocation"> 250<!-- --> 251</a> 252<ul class="blockListLast"> 253<li class="blockList"> 254<h4>mLocation</h4> 255<pre>protected <a href="../../../org/codehaus/jackson/JsonLocation.html" title="class in org.codehaus.jackson">JsonLocation</a> mLocation</pre> 256</li> 257</ul> 258</li> 259</ul> 260<!-- ========= CONSTRUCTOR DETAIL ======== --> 261<ul class="blockList"> 262<li class="blockList"><a name="constructor_detail"> 263<!-- --> 264</a> 265<h3>Constructor Detail</h3> 266<a name="JsonProcessingException(java.lang.String, org.codehaus.jackson.JsonLocation, java.lang.Throwable)"> 267<!-- --> 268</a> 269<ul class="blockList"> 270<li class="blockList"> 271<h4>JsonProcessingException</h4> 272<pre>protected JsonProcessingException(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> msg, 273 <a href="../../../org/codehaus/jackson/JsonLocation.html" title="class in org.codehaus.jackson">JsonLocation</a> loc, 274 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> rootCause)</pre> 275</li> 276</ul> 277<a name="JsonProcessingException(java.lang.String)"> 278<!-- --> 279</a> 280<ul class="blockList"> 281<li class="blockList"> 282<h4>JsonProcessingException</h4> 283<pre>protected JsonProcessingException(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> msg)</pre> 284</li> 285</ul> 286<a name="JsonProcessingException(java.lang.String, org.codehaus.jackson.JsonLocation)"> 287<!-- --> 288</a> 289<ul class="blockList"> 290<li class="blockList"> 291<h4>JsonProcessingException</h4> 292<pre>protected JsonProcessingException(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> msg, 293 <a href="../../../org/codehaus/jackson/JsonLocation.html" title="class in org.codehaus.jackson">JsonLocation</a> loc)</pre> 294</li> 295</ul> 296<a name="JsonProcessingException(java.lang.String, java.lang.Throwable)"> 297<!-- --> 298</a> 299<ul class="blockList"> 300<li class="blockList"> 301<h4>JsonProcessingException</h4> 302<pre>protected JsonProcessingException(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> msg, 303 <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> rootCause)</pre> 304</li> 305</ul> 306<a name="JsonProcessingException(java.lang.Throwable)"> 307<!-- --> 308</a> 309<ul class="blockListLast"> 310<li class="blockList"> 311<h4>JsonProcessingException</h4> 312<pre>protected JsonProcessingException(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a> rootCause)</pre> 313</li> 314</ul> 315</li> 316</ul> 317<!-- ============ METHOD DETAIL ========== --> 318<ul class="blockList"> 319<li class="blockList"><a name="method_detail"> 320<!-- --> 321</a> 322<h3>Method Detail</h3> 323<a name="getLocation()"> 324<!-- --> 325</a> 326<ul class="blockList"> 327<li class="blockList"> 328<h4>getLocation</h4> 329<pre>public <a href="../../../org/codehaus/jackson/JsonLocation.html" title="class in org.codehaus.jackson">JsonLocation</a> getLocation()</pre> 330</li> 331</ul> 332<a name="getMessage()"> 333<!-- --> 334</a> 335<ul class="blockList"> 336<li class="blockList"> 337<h4>getMessage</h4> 338<pre>public <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> getMessage()</pre> 339<div class="block">Default method overridden so that we can add location information</div> 340<dl> 341<dt><strong>Overrides:</strong></dt> 342<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#getMessage()" title="class or interface in java.lang">getMessage</a></code> in class <code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a></code></dd> 343</dl> 344</li> 345</ul> 346<a name="toString()"> 347<!-- --> 348</a> 349<ul class="blockListLast"> 350<li class="blockList"> 351<h4>toString</h4> 352<pre>public <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> toString()</pre> 353<dl> 354<dt><strong>Overrides:</strong></dt> 355<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true#toString()" title="class or interface in java.lang">toString</a></code> in class <code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a></code></dd> 356</dl> 357</li> 358</ul> 359</li> 360</ul> 361</li> 362</ul> 363</div> 364</div> 365<!-- ========= END OF CLASS DATA ========= --> 366<!-- ======= START OF BOTTOM NAVBAR ====== --> 367<div class="bottomNav"><a name="navbar_bottom"> 368<!-- --> 369</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> 370<!-- --> 371</a> 372<ul class="navList" title="Navigation"> 373<li><a href="../../../overview-summary.html">Overview</a></li> 374<li><a href="package-summary.html">Package</a></li> 375<li class="navBarCell1Rev">Class</li> 376<li><a href="class-use/JsonProcessingException.html">Use</a></li> 377<li><a href="package-tree.html">Tree</a></li> 378<li><a href="../../../deprecated-list.html">Deprecated</a></li> 379<li><a href="../../../index-all.html">Index</a></li> 380<li><a href="../../../help-doc.html">Help</a></li> 381</ul> 382</div> 383<div class="subNav"> 384<ul class="navList"> 385<li><a href="../../../org/codehaus/jackson/JsonParser.NumberType.html" title="enum in org.codehaus.jackson"><span class="strong">Prev Class</span></a></li> 386<li><a href="../../../org/codehaus/jackson/JsonStreamContext.html" title="class in org.codehaus.jackson"><span class="strong">Next Class</span></a></li> 387</ul> 388<ul class="navList"> 389<li><a href="../../../index.html?org/codehaus/jackson/JsonProcessingException.html" target="_top">Frames</a></li> 390<li><a href="JsonProcessingException.html" target="_top">No Frames</a></li> 391</ul> 392<ul class="navList" id="allclasses_navbar_bottom"> 393<li><a href="../../../allclasses-noframe.html">All Classes</a></li> 394</ul> 395<div> 396<script type="text/javascript"><!-- 397 allClassesLink = document.getElementById("allclasses_navbar_bottom"); 398 if(window==top) { 399 allClassesLink.style.display = "block"; 400 } 401 else { 402 allClassesLink.style.display = "none"; 403 } 404 //--> 405</script> 406</div> 407<div> 408<ul class="subNavList"> 409<li>Summary: </li> 410<li>Nested | </li> 411<li><a href="#field_summary">Field</a> | </li> 412<li><a href="#constructor_summary">Constr</a> | </li> 413<li><a href="#method_summary">Method</a></li> 414</ul> 415<ul class="subNavList"> 416<li>Detail: </li> 417<li><a href="#field_detail">Field</a> | </li> 418<li><a href="#constructor_detail">Constr</a> | </li> 419<li><a href="#method_detail">Method</a></li> 420</ul> 421</div> 422<a name="skip-navbar_bottom"> 423<!-- --> 424</a></div> 425<!-- ======== END OF BOTTOM NAVBAR ======= --> 426</body> 427</html> 428