Bug 709339 - First mostly functional drop of native Sync. a=mobile

This commit is contained in:
Richard Newman
2012-01-14 09:20:31 -08:00
parent 83e8e5d5ed
commit 5fe8ffe843
89 changed files with 5497 additions and 2295 deletions

View File

@@ -19,7 +19,7 @@
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Richard Newman <rnewman@mozilla.com>
* Richard Newman <rnewman@mozilla.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
@@ -37,10 +37,10 @@
package org.mozilla.gecko.sync;
public class NonObjectJSONException extends Exception {
private static final long serialVersionUID = 435366246452253073L;
Object obj;
public class NonObjectJSONException extends UnexpectedJSONException {
private static final long serialVersionUID = 2214238763035650087L;
public NonObjectJSONException(Object object) {
obj = object;
super(object);
}
}