Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.parse;

import java.util.Locale;

public abstract class LiveQueryException extends Exception {

private LiveQueryException() {
Expand Down Expand Up @@ -53,7 +55,7 @@ public static class InvalidJSONException extends LiveQueryException {
private final String expectedKey;

/* package */ InvalidJSONException(String json, String expectedKey) {
super(String.format("Invalid JSON; expectedKey: %s, json: %s", expectedKey, json));
super(String.format(Locale.US, "Invalid JSON; expectedKey: %s, json: %s", expectedKey, json));
this.json = json;
this.expectedKey = expectedKey;
}
Expand All @@ -77,7 +79,7 @@ public static class ServerReportedException extends LiveQueryException {
private final boolean reconnect;

public ServerReportedException(int code, String error, boolean reconnect) {
super(String.format("Server reported error; code: %d, error: %s, reconnect: %b", code, error, reconnect));
super(String.format(Locale.US, "Server reported error; code: %d, error: %s, reconnect: %b", code, error, reconnect));
this.code = code;
this.error = error;
this.reconnect = reconnect;
Expand Down