Bug 955808 - Implement Android Firefox Account client that speaks "onepw" protocol. r=rnewman

This commit is contained in:
Nick Alexander
2014-01-07 18:27:47 -08:00
parent cb8d81078b
commit d979251fc9
9 changed files with 166 additions and 33 deletions

View File

@@ -7,7 +7,7 @@ package org.mozilla.gecko.sync;
public class NonObjectJSONException extends UnexpectedJSONException {
private static final long serialVersionUID = 2214238763035650087L;
public NonObjectJSONException(Object object) {
super(object);
public NonObjectJSONException(String detailMessage) {
super(detailMessage);
}
}