We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe8bc1 commit 5e36e07Copy full SHA for 5e36e07
core-api/src/main/java/com/optimizely/ab/config/parser/GsonConfigParser.java
@@ -34,10 +34,10 @@ final class GsonConfigParser implements ConfigParser {
34
@Override
35
public ProjectConfig parseProjectConfig(@Nonnull String json) throws ConfigParseException {
36
if (json == null) {
37
- throw new ConfigParseException("Unable to parse null datafile.");
+ throw new ConfigParseException("Unable to parse null json.");
38
}
39
if (json.length() == 0) {
40
- throw new ConfigParseException("Unable to parse empty datafile.");
+ throw new ConfigParseException("Unable to parse empty json.");
41
42
Gson gson = new GsonBuilder()
43
.registerTypeAdapter(ProjectConfig.class, new ProjectConfigGsonDeserializer())
0 commit comments