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 NonArrayJSONException extends UnexpectedJSONException {
private static final long serialVersionUID = 5582918057432365749L;
public NonArrayJSONException(Object object) {
super(object);
public NonArrayJSONException(String detailMessage) {
super(detailMessage);
}
}